SharePoint MinimaList Blog

All posts are "AS-IS" and should be tested and validated before application on any Production environment.

Browse by Tags

Related Posts
  • Blog Post: Activating Windows with PowerShell

    You want to activate Windows using PowerShell? Here you go: $computer = gc env:computername $key = "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX" $service = get-wmiObject -query "select * from SoftwareLicensingService" -computername $computer $service.InstallProductKey($key) $service.RefreshLicenseStatus...