Accesso Protetto
Entra
Downloads
TeamViewer
RustDesk
Password errata!
Lista Comandi
Rete
Ottieni profilo connessione di rete
Get-NetConnectionProfile
Imposta rete su privata
Set-NetConnectionProfile -name "Rete" -NetworkCategory Private
Gestione utente Scanner
Crea Utente Scanner
net user scanner B3ttiol$ /add
Disabilita scadenza password per 'scanner' (Win10)
wmic UserAccount where Name="scanner" set PasswordExpires=False
Disabilita scadenza password per 'scanner' (Win11)
powershell -command "set-localuser -name 'scanner' -passwordneverexpires $true"
Nascondi Utente Scanner
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList" /v scanner /t REG_DWORD /d 0 /f
Gestione Scansioni
Crea Cartella Scansioni
mkdir C:\Scansioni
Condividi Cartella Scansioni
net share Scansioni=C:\Scansioni /grant:scanner,full /grant:Everyone,read
FileZilla Server
Crea nuovo servizio FileZilla Server
New-Service -Name "FileZilla Server" -DisplayName "FileZilla Server" -Description "FileZilla FTP Server" -StartupType Automatic -BinaryPathName "Path-To-App.exe --service"
Stop FileZilla Service
net stop "FileZilla Server"
Start FileZilla Service
net start "FileZilla Server"
Sistema & Utility
Aggiungi driver da file .inf
Pnputil /add-driver "*.inf"
Aggiungi driver stampante Brother MFC-EX670
Add-PrinterDriver -Name "Brother MFC-EX670 series"
Aggiungi porta stampante IP 192.168.0.111
Add-PrinterPort -Name "192.168.0.111" -PrinterHostAddress "192.168.0.111"
Aggiungi stampante Brother MFC-EX670
Add-Printer -Name "Brother MFC-EX670 series" -DriverName "Brother MFC-EX670 series" -PortName "192.168.0.111"
Elimina stampante SHARP BP-60C31 PCL6
rundll32 printui.dll,PrintUIEntry /e /n "SHARP BP-60C31 PCL6"
Downloads
TeamViewer
RustDesk
RealVNC Viewer
Copiato negli appunti!