Link to home
Start Free TrialLog in
Avatar of Steve B
Steve BFlag for United States of America

asked on

how to tell if SMBv1 is enabled on a server or workstation?

Is there an open source application that can scan the network looking for servers that have SMBv1 enabled?  I can check all of mine manually but with 40 servers it will be kind of a pain.
Avatar of McKnife
McKnife
Flag of Germany image

Use a powershell startup script one-liner that detects it:
Get-WmiObject -query "select * from win32_optionalfeature where installstate= 1" |select-string SMB1Protocol

Open in new window

If succesful, have the script write the computername to a file on a share that you have an eye on.
SOLUTION
Avatar of Member_2_3684445
Member_2_3684445
Flag of Netherlands image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial