浏览代码

Removed administrator check

Richard Newton 7 年之前
父节点
当前提交
4caacbb162
共有 1 个文件被更改,包括 0 次插入7 次删除
  1. 0 7
      Windows10Debloater.ps1

+ 0 - 7
Windows10Debloater.ps1

@@ -1,13 +1,6 @@
 #This function finds any AppX/AppXProvisioned package and uninstalls it, except for Freshpaint, Windows Calculator, Windows Store, and Windows Photos.
 #Also, to note - This does NOT remove essential system services/software/etc such as .NET framework installations, Cortana, Edge, etc.
 
-#Checks for the script running as admin and if it's not then restarts the script in admin
-Add-Type -AssemblyName PresentationCore,PresentationFramework
-If (!([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]'Administrator')) {
-  Start-Process powershell.exe -ArgumentList ("-NoProfile -ExecutionPolicy Bypass -File `"{0}`"" -f $PSCommandPath) -Verb RunAs
-  Exit
-}
-
 #no errors throughout
 $ErrorActionPreference = 'silentlycontinue'