Jump to content

Recommended Posts

Posted

Didn't have a chance to try again yesterday, but i've run the script, rebooted and no - still can't map it's c drive.

if I tick the box, I can map it.

Posted

You could just use PowerShell to enable/disiable (check/uncheck) File and Printer Sharing for Microsoft Networks

#RequireAdmin

_FilePrintSharing("Ethernet", True)

Func _FilePrintSharing($_sAdapterName = "Ethernet", $_bEnable = True)
    Switch $_bEnable
        Case False
            ;~ Disable File and Printer Sharing for Microsoft Networks
            RunWait('PowerShell -Command "& {Disable-NetAdapterBinding -Name ' & "'" & $_sAdapterName & "' -DisplayName 'File and Printer Sharing for Microsoft Networks'" & '}"', "", @SW_HIDE)
        Case True
            ;~ Enable  File and Printer Sharing for Microsoft Networks
            RunWait('PowerShell -Command "& {Enable-NetAdapterBinding -Name ' & "'" & $_sAdapterName & "' -DisplayName 'File and Printer Sharing for Microsoft Networks'" & '}"', "", @SW_HIDE)
    EndSwitch
EndFunc

 

Posted

Wow, that actually worked - excellent, thank you.

I noticed that's for Ethernet, how could I adapt it to work for all adaptors? Would an * work?

Posted

You can use something like to enable/disable File and Printer Sharing for Microsoft Networks for all network adapters.

#RequireAdmin

_FilePrintSharing()

Func _FilePrintSharing($_bEnable = True)
    Switch $_bEnable
        Case False
            ;~ Disable File and Printer Sharing for Microsoft Networks
            RunWait('PowerShell -Command "& {Get-NetAdapter | Disable-NetAdapterBinding -DisplayName ' & "'File and Printer Sharing for Microsoft Networks'" & '}"', "", @SW_HIDE)
        Case True
            ;~ Enable  File and Printer Sharing for Microsoft Networks
            RunWait('PowerShell -Command "& {Get-NetAdapter | Enable-NetAdapterBinding -DisplayName ' & "'File and Printer Sharing for Microsoft Networks'" & '}"', "", @SW_HIDE)
    EndSwitch
EndFunc

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...