Skip to content

Instantly share code, notes, and snippets.

@mwrock
Created May 15, 2016 23:05
Show Gist options
  • Save mwrock/ac17128e4a9fb9383f7e18dbf2aefa75 to your computer and use it in GitHub Desktop.
Save mwrock/ac17128e4a9fb9383f7e18dbf2aefa75 to your computer and use it in GitHub Desktop.
function Disable-NicICS {
$cfg = New-Object -ComObject HNetCfg.HNetShare.1
$all = $cfg.EnumEveryConnection
foreach($conn in $all){
$shareCfg=$cfg.INetSharingConfigurationForINetConnection($conn)
$props=$cfg.NetConnectionProps($conn)
$props
$shareCfg.DisableSharing()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment