netsh wlan show profile name =ime-wifi-tocke key=clear ali greš v search - optional features in potem desno more features (grafični vmesnik) ali zaženeš Powershell kot admin in skopiraš ukaz ------------------------------------------------------- Here are the steps to detect, disable and enable SMBv1 client and server by using PowerShell commands. The computer will restart after you run the PowerShell commands to disable or enable SMBv1. Start windows Powershell with admin ------- Detect: ------- Get-WindowsOptionalFeature -Online -FeatureName SMB1Protocol -------- Disable: -------- Disable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol ------- Enable: ------- Enable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: SMB v2/v3 Detect: PowerShell Get-SmbServerConfiguration | Select EnableSMB2Protocol :::::::::::: Disable: PowerShell Set-SmbServerConfiguration -EnableSMB2Protocol $false ::::::::::::: Enable: PowerShell Set-SmbServerConfiguration -EnableSMB2Protocol $true ::::::::::::::::