浏览代码

Script will now create a restore point

The ability for the script to create a system restore point has been added before the GUI itself is shown. It is automatically created at this time as well.
Richard Newton 4 年之前
父节点
当前提交
6e8c7362c7
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      Windows10DebloaterGUI.ps1

+ 5 - 0
Windows10DebloaterGUI.ps1

@@ -35,6 +35,7 @@ If (!([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]:
     }
     }
 }
 }
 
 
+
 #Unnecessary Windows 10 AppX apps that will be removed by the blacklist.
 #Unnecessary Windows 10 AppX apps that will be removed by the blacklist.
 $global:Bloatware = @(
 $global:Bloatware = @(
     "Microsoft.PPIProjection"
     "Microsoft.PPIProjection"
@@ -488,6 +489,10 @@ Else {
 
 
 Start-Transcript -OutputDirectory "${DebloatFolder}"
 Start-Transcript -OutputDirectory "${DebloatFolder}"
 
 
+Write-Output "Creating System Restore Point if one does not already exist. If one does, then you will receive a warning. Please wait..."
+Checkpoint-Computer -Description "Before using W10DebloaterGUI.ps1" 
+
+
 #region gui events {
 #region gui events {
 $CustomizeBlacklist.Add_Click( {
 $CustomizeBlacklist.Add_Click( {
         $CustomizeForm                  = New-Object System.Windows.Forms.Form
         $CustomizeForm                  = New-Object System.Windows.Forms.Form