mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-14 14:45:52 -06:00
Code Formatting of Repo - Add Preprocessing to Compilation Process - Introduction of Dev/Build Tools to WinUtil (Although very simple at the moment) (#2383)
* Replace Tabs with Spaces to follow the conventions
* Add Preprocessing in Compiler
* Compile from Anywhere you want - Running 'Compile.ps1' Works in any directory you call it from
* Code Formatting Changes
* Result of Preprocessing Step in 'Compile.ps1' Script - Remove Trailing Whitespace Characters
* Make Preprocessing more advanced
* Move Preprocessing to a separate script file
* Make Self Modification impossible for 'tools/Do-PreProcessing.ps1' Script - Make the workingdir same as sync.PSScriptRoot for consistency
* Revert commit b5dffd671f
* Patched a Bug of some Excluded Files not actually get excluded in 'Get-ChildItem' PS Cmdlet
* Update Replace Regex for Code Formatting in 'Do-PreProcessing' Script Tool
* Rename 'Do-PreProcessing' to 'Invoke-Preprocessing' - Update some Comments
* Make 'Invoke-Preprocessing' Modular - Update RegEx to handle more cases - Update Documentation - Add Validations & Useful feedback upon error
* Replace Tabs with Spaces to follow the conventions - 'applications.json' File
* Code Formatting Changes - 'Copy-Files' Private Function
* Update Replace Regex for Code Formatting in 'Invoke-Preprocessing' Script Tool
* Replace Tabs with Spaces to follow the conventions - Make 'ExcludedFiles' validation step check all filepaths before finally checking if any has failed
* Result of 'Invoke-Preprocessing' Script
* Update Replace Regex for Code Formatting in 'Invoke-Preprocessing' Script Tool
This commit is contained in:
parent
3b2af3fa2b
commit
3903eaaa24
53
Compile.ps1
53
Compile.ps1
@ -1,13 +1,15 @@
|
|||||||
param (
|
param (
|
||||||
[switch]$Debug,
|
[switch]$Debug,
|
||||||
[switch]$Run
|
[switch]$Run,
|
||||||
|
[switch]$SkipPreprocessing
|
||||||
)
|
)
|
||||||
$OFS = "`r`n"
|
$OFS = "`r`n"
|
||||||
$scriptname = "winutil.ps1"
|
$scriptname = "winutil.ps1"
|
||||||
|
$workingdir = $PSScriptRoot
|
||||||
|
|
||||||
# Variable to sync between runspaces
|
# Variable to sync between runspaces
|
||||||
$sync = [Hashtable]::Synchronized(@{})
|
$sync = [Hashtable]::Synchronized(@{})
|
||||||
$sync.PSScriptRoot = $PSScriptRoot
|
$sync.PSScriptRoot = $workingdir
|
||||||
$sync.configs = @{}
|
$sync.configs = @{}
|
||||||
|
|
||||||
function Update-Progress {
|
function Update-Progress {
|
||||||
@ -34,6 +36,17 @@ $header = @"
|
|||||||
################################################################################################################
|
################################################################################################################
|
||||||
"@
|
"@
|
||||||
|
|
||||||
|
if (-NOT $SkipPreprocessing) {
|
||||||
|
Update-Progress "Pre-req: Running Preprocessor..." 0
|
||||||
|
|
||||||
|
# Dot source the 'Invoke-Preprocessing' Function from 'tools/Invoke-Preprocessing.ps1' Script
|
||||||
|
$preprocessingFilePath = ".\tools\Invoke-Preprocessing.ps1"
|
||||||
|
. "$(($workingdir -replace ('\\$', '')) + '\' + ($preprocessingFilePath -replace ('\.\\', '')))"
|
||||||
|
|
||||||
|
$excludedFiles = @('.\.git\', '.\.gitignore', '.\.gitattributes', '.\.github\CODEOWNERS', '.\LICENSE', '.\winutil.ps1', "$preprocessingFilePath", '.\docs\changelog.md', '*.png', '*.exe')
|
||||||
|
$msg = "Pre-req: Code Formatting"
|
||||||
|
Invoke-Preprocessing -WorkingDir "$workingdir" -ExcludedFiles $excludedFiles -ProgressStatusMessage $msg
|
||||||
|
}
|
||||||
|
|
||||||
# Create the script in memory.
|
# Create the script in memory.
|
||||||
Update-Progress "Pre-req: Allocating Memory" 0
|
Update-Progress "Pre-req: Allocating Memory" 0
|
||||||
@ -43,14 +56,14 @@ Update-Progress "Adding: Header" 5
|
|||||||
$script_content.Add($header)
|
$script_content.Add($header)
|
||||||
|
|
||||||
Update-Progress "Adding: Version" 10
|
Update-Progress "Adding: Version" 10
|
||||||
$script_content.Add($(Get-Content .\scripts\start.ps1).replace('#{replaceme}',"$(Get-Date -Format yy.MM.dd)"))
|
$script_content.Add($(Get-Content "$workingdir\scripts\start.ps1").replace('#{replaceme}',"$(Get-Date -Format yy.MM.dd)"))
|
||||||
|
|
||||||
Update-Progress "Adding: Functions" 20
|
Update-Progress "Adding: Functions" 20
|
||||||
Get-ChildItem .\functions -Recurse -File | ForEach-Object {
|
Get-ChildItem "$workingdir\functions" -Recurse -File | ForEach-Object {
|
||||||
$script_content.Add($(Get-Content $psitem.FullName))
|
$script_content.Add($(Get-Content $psitem.FullName))
|
||||||
}
|
}
|
||||||
Update-Progress "Adding: Config *.json" 40
|
Update-Progress "Adding: Config *.json" 40
|
||||||
Get-ChildItem .\config | Where-Object {$psitem.extension -eq ".json"} | ForEach-Object {
|
Get-ChildItem "$workingdir\config" | Where-Object {$psitem.extension -eq ".json"} | ForEach-Object {
|
||||||
|
|
||||||
$json = (Get-Content $psitem.FullName).replace("'","''")
|
$json = (Get-Content $psitem.FullName).replace("'","''")
|
||||||
|
|
||||||
@ -95,10 +108,10 @@ Get-ChildItem .\config | Where-Object {$psitem.extension -eq ".json"} | ForEach-
|
|||||||
$script_content.Add($(Write-output "`$sync.configs.$($psitem.BaseName) = '$json' `| convertfrom-json" ))
|
$script_content.Add($(Write-output "`$sync.configs.$($psitem.BaseName) = '$json' `| convertfrom-json" ))
|
||||||
}
|
}
|
||||||
|
|
||||||
$xaml = (Get-Content .\xaml\inputXML.xaml).replace("'","''")
|
$xaml = (Get-Content "$workingdir\xaml\inputXML.xaml").replace("'","''")
|
||||||
|
|
||||||
# Dot-source the Get-TabXaml function
|
# Dot-source the Get-TabXaml function
|
||||||
. .\functions\private\Get-TabXaml.ps1
|
. "$workingdir\functions\private\Get-TabXaml.ps1"
|
||||||
|
|
||||||
Update-Progress "Building: Xaml " 75
|
Update-Progress "Building: Xaml " 75
|
||||||
$appXamlContent = Get-TabXaml "applications" 5
|
$appXamlContent = Get-TabXaml "applications" 5
|
||||||
@ -114,30 +127,28 @@ $xaml = $xaml -replace "{{InstallPanel_features}}", $featuresXamlContent
|
|||||||
|
|
||||||
$script_content.Add($(Write-output "`$inputXML = '$xaml'"))
|
$script_content.Add($(Write-output "`$inputXML = '$xaml'"))
|
||||||
|
|
||||||
$script_content.Add($(Get-Content .\scripts\main.ps1))
|
$script_content.Add($(Get-Content "$workingdir\scripts\main.ps1"))
|
||||||
|
|
||||||
if ($Debug) {
|
if ($Debug) {
|
||||||
Update-Progress "Writing debug files" 95
|
Update-Progress "Writing debug files" 95
|
||||||
$appXamlContent | Out-File -FilePath ".\xaml\inputApp.xaml" -Encoding ascii
|
$appXamlContent | Out-File -FilePath "$workingdir\xaml\inputApp.xaml" -Encoding ascii
|
||||||
$tweaksXamlContent | Out-File -FilePath ".\xaml\inputTweaks.xaml" -Encoding ascii
|
$tweaksXamlContent | Out-File -FilePath "$workingdir\xaml\inputTweaks.xaml" -Encoding ascii
|
||||||
$featuresXamlContent | Out-File -FilePath ".\xaml\inputFeatures.xaml" -Encoding ascii
|
$featuresXamlContent | Out-File -FilePath "$workingdir\xaml\inputFeatures.xaml" -Encoding ascii
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
Update-Progress "Removing temporary files" 99
|
Update-Progress "Removing temporary files" 99
|
||||||
Remove-Item ".\xaml\inputApp.xaml" -ErrorAction SilentlyContinue
|
Remove-Item "$workingdir\xaml\inputApp.xaml" -ErrorAction SilentlyContinue
|
||||||
Remove-Item ".\xaml\inputTweaks.xaml" -ErrorAction SilentlyContinue
|
Remove-Item "$workingdir\xaml\inputTweaks.xaml" -ErrorAction SilentlyContinue
|
||||||
Remove-Item ".\xaml\inputFeatures.xaml" -ErrorAction SilentlyContinue
|
Remove-Item "$workingdir\xaml\inputFeatures.xaml" -ErrorAction SilentlyContinue
|
||||||
}
|
}
|
||||||
|
|
||||||
Set-Content -Path $scriptname -Value ($script_content -join "`r`n") -Encoding ascii
|
Set-Content -Path "$workingdir\$scriptname" -Value ($script_content -join "`r`n") -Encoding ascii
|
||||||
Write-Progress -Activity "Compiling" -Completed
|
Write-Progress -Activity "Compiling" -Completed
|
||||||
|
|
||||||
if ($run) {
|
if ($run) {
|
||||||
try {
|
try {
|
||||||
Start-Process -FilePath "pwsh" -ArgumentList ".\$scriptname"
|
Start-Process -FilePath "pwsh" -ArgumentList "$workingdir\$scriptname"
|
||||||
}
|
} catch {
|
||||||
catch {
|
Start-Process -FilePath "powershell" -ArgumentList "$workingdir\$scriptname"
|
||||||
Start-Process -FilePath "powershell" -ArgumentList ".\$scriptname"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -2670,8 +2670,7 @@
|
|||||||
$OneDriveUninstallString = Get-ItemPropertyValue \"$regPath\" -Name \"UninstallString\"
|
$OneDriveUninstallString = Get-ItemPropertyValue \"$regPath\" -Name \"UninstallString\"
|
||||||
$OneDriveExe, $OneDriveArgs = $OneDriveUninstallString.Split(\" \")
|
$OneDriveExe, $OneDriveArgs = $OneDriveUninstallString.Split(\" \")
|
||||||
Start-Process -FilePath $OneDriveExe -ArgumentList \"$OneDriveArgs /silent\" -NoNewWindow -Wait
|
Start-Process -FilePath $OneDriveExe -ArgumentList \"$OneDriveArgs /silent\" -NoNewWindow -Wait
|
||||||
}
|
} else {
|
||||||
else{
|
|
||||||
Write-Host \"Onedrive dosn't seem to be installed anymore\" -ForegroundColor Red
|
Write-Host \"Onedrive dosn't seem to be installed anymore\" -ForegroundColor Red
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@ -2738,8 +2737,7 @@
|
|||||||
Write-Host \"Please Note - The OneDrive folder at $OneDrivePath may still have items in it. You must manually delete it, but all the files should already be copied to the base user folder.\"
|
Write-Host \"Please Note - The OneDrive folder at $OneDrivePath may still have items in it. You must manually delete it, but all the files should already be copied to the base user folder.\"
|
||||||
Write-Host \"If there are Files missing afterwards, please Login to Onedrive.com and Download them manually\" -ForegroundColor Yellow
|
Write-Host \"If there are Files missing afterwards, please Login to Onedrive.com and Download them manually\" -ForegroundColor Yellow
|
||||||
Start-Sleep 5
|
Start-Sleep 5
|
||||||
}
|
} else {
|
||||||
else{
|
|
||||||
Write-Host \"Something went Wrong during the Unistallation of OneDrive\" -ForegroundColor Red
|
Write-Host \"Something went Wrong during the Unistallation of OneDrive\" -ForegroundColor Red
|
||||||
}
|
}
|
||||||
"
|
"
|
||||||
@ -2939,8 +2937,7 @@
|
|||||||
try {
|
try {
|
||||||
Invoke-WebRequest -Uri $remoteHostsUrl -OutFile $tempHostsPath
|
Invoke-WebRequest -Uri $remoteHostsUrl -OutFile $tempHostsPath
|
||||||
Write-Output \"Downloaded the remote HOSTS file to a temporary location.\"
|
Write-Output \"Downloaded the remote HOSTS file to a temporary location.\"
|
||||||
}
|
} catch {
|
||||||
catch {
|
|
||||||
Write-Error \"Failed to download the HOSTS file. Error: $_\"
|
Write-Error \"Failed to download the HOSTS file. Error: $_\"
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2966,8 +2963,7 @@
|
|||||||
$combinedContent | Set-Content $localHostsPath -Encoding ASCII
|
$combinedContent | Set-Content $localHostsPath -Encoding ASCII
|
||||||
Write-Output \"Successfully added the AdobeNetBlock.\"
|
Write-Output \"Successfully added the AdobeNetBlock.\"
|
||||||
}
|
}
|
||||||
}
|
} catch {
|
||||||
catch {
|
|
||||||
Write-Error \"Error during processing: $_\"
|
Write-Error \"Error during processing: $_\"
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2978,8 +2974,7 @@
|
|||||||
try {
|
try {
|
||||||
Invoke-Expression \"ipconfig /flushdns\"
|
Invoke-Expression \"ipconfig /flushdns\"
|
||||||
Write-Output \"DNS cache flushed successfully.\"
|
Write-Output \"DNS cache flushed successfully.\"
|
||||||
}
|
} catch {
|
||||||
catch {
|
|
||||||
Write-Error \"Failed to flush DNS cache. Error: $_\"
|
Write-Error \"Failed to flush DNS cache. Error: $_\"
|
||||||
}
|
}
|
||||||
"
|
"
|
||||||
@ -2992,8 +2987,7 @@
|
|||||||
# Load the content of the HOSTS file
|
# Load the content of the HOSTS file
|
||||||
try {
|
try {
|
||||||
$hostsContent = Get-Content $localHostsPath -ErrorAction Stop
|
$hostsContent = Get-Content $localHostsPath -ErrorAction Stop
|
||||||
}
|
} catch {
|
||||||
catch {
|
|
||||||
Write-Error \"Failed to load the HOSTS file. Error: $_\"
|
Write-Error \"Failed to load the HOSTS file. Error: $_\"
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@ -3019,8 +3013,7 @@
|
|||||||
try {
|
try {
|
||||||
$newContent | Set-Content $localHostsPath -Encoding ASCII
|
$newContent | Set-Content $localHostsPath -Encoding ASCII
|
||||||
Write-Output \"Successfully removed the AdobeNetBlock section from the HOSTS file.\"
|
Write-Output \"Successfully removed the AdobeNetBlock section from the HOSTS file.\"
|
||||||
}
|
} catch {
|
||||||
catch {
|
|
||||||
Write-Error \"Failed to write back to the HOSTS file. Error: $_\"
|
Write-Error \"Failed to write back to the HOSTS file. Error: $_\"
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -3028,8 +3021,7 @@
|
|||||||
try {
|
try {
|
||||||
Invoke-Expression \"ipconfig /flushdns\"
|
Invoke-Expression \"ipconfig /flushdns\"
|
||||||
Write-Output \"DNS cache flushed successfully.\"
|
Write-Output \"DNS cache flushed successfully.\"
|
||||||
}
|
} catch {
|
||||||
catch {
|
|
||||||
Write-Error \"Failed to flush DNS cache. Error: $_\"
|
Write-Error \"Failed to flush DNS cache. Error: $_\"
|
||||||
}
|
}
|
||||||
"
|
"
|
||||||
|
@ -57,9 +57,9 @@ function ConvertTo-Icon {
|
|||||||
|
|
||||||
#>
|
#>
|
||||||
param(
|
param(
|
||||||
[Parameter(Mandatory=$true, position=0)]
|
[Parameter(Mandatory, position=0)]
|
||||||
[string]$bitmapPath,
|
[string]$bitmapPath,
|
||||||
[Parameter(Mandatory=$true, position=1)]
|
[Parameter(Mandatory, position=1)]
|
||||||
[string]$iconPath,
|
[string]$iconPath,
|
||||||
[Parameter(position=2)]
|
[Parameter(position=2)]
|
||||||
[bool]$overrideIconFile = $true
|
[bool]$overrideIconFile = $true
|
||||||
@ -86,8 +86,7 @@ function ConvertTo-Icon {
|
|||||||
$icon.Save($file)
|
$icon.Save($file)
|
||||||
$file.Close()
|
$file.Close()
|
||||||
$icon.Dispose()
|
$icon.Dispose()
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
throw [System.IO.FileNotFoundException] "[ConvertTo-Icon] The provided bitmap File Path is not found at '$bitmapPath'."
|
throw [System.IO.FileNotFoundException] "[ConvertTo-Icon] The provided bitmap File Path is not found at '$bitmapPath'."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -21,27 +21,22 @@ function Copy-Files {
|
|||||||
$files = Get-ChildItem -Path $path -Recurse:$recurse
|
$files = Get-ChildItem -Path $path -Recurse:$recurse
|
||||||
Write-Host "Copy $($files.Count)(s) from $path to $destination"
|
Write-Host "Copy $($files.Count)(s) from $path to $destination"
|
||||||
|
|
||||||
foreach($file in $files)
|
foreach ($file in $files) {
|
||||||
{
|
|
||||||
$status = "Copy files {0} on {1}: {2}" -f $counter, $files.Count, $file.Name
|
$status = "Copy files {0} on {1}: {2}" -f $counter, $files.Count, $file.Name
|
||||||
Write-Progress -Activity "Copy Windows files" -Status $status -PercentComplete ($counter++/$files.count*100)
|
Write-Progress -Activity "Copy Windows files" -Status $status -PercentComplete ($counter++/$files.count*100)
|
||||||
$restpath = $file.FullName -Replace $path, ''
|
$restpath = $file.FullName -Replace $path, ''
|
||||||
|
|
||||||
if($file.PSIsContainer -eq $true)
|
if ($file.PSIsContainer -eq $true) {
|
||||||
{
|
|
||||||
Write-Debug "Creating $($destination + $restpath)"
|
Write-Debug "Creating $($destination + $restpath)"
|
||||||
New-Item ($destination+$restpath) -Force:$force -Type Directory -ErrorAction SilentlyContinue
|
New-Item ($destination+$restpath) -Force:$force -Type Directory -ErrorAction SilentlyContinue
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
Write-Debug "Copy from $($file.FullName) to $($destination+$restpath)"
|
Write-Debug "Copy from $($file.FullName) to $($destination+$restpath)"
|
||||||
Copy-Item $file.FullName ($destination+$restpath) -ErrorAction SilentlyContinue -Force:$force
|
Copy-Item $file.FullName ($destination+$restpath) -ErrorAction SilentlyContinue -Force:$force
|
||||||
Set-ItemProperty -Path ($destination+$restpath) -Name IsReadOnly -Value $false
|
Set-ItemProperty -Path ($destination+$restpath) -Name IsReadOnly -Value $false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Write-Progress -Activity "Copy Windows files" -Status "Ready" -Completed
|
Write-Progress -Activity "Copy Windows files" -Status "Ready" -Completed
|
||||||
}
|
} catch {
|
||||||
Catch{
|
|
||||||
Write-Warning "Unable to Copy all the files due to unhandled exception"
|
Write-Warning "Unable to Copy all the files due to unhandled exception"
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
Write-Warning $psitem.Exception.StackTrace
|
||||||
}
|
}
|
||||||
|
@ -1,15 +1,17 @@
|
|||||||
function Get-Oscdimg {
|
function Get-Oscdimg {
|
||||||
<#
|
<#
|
||||||
|
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This function will download oscdimg file from github Release folders and put it into env:temp folder
|
This function will download oscdimg file from github Release folders and put it into env:temp folder
|
||||||
|
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
Get-Oscdimg
|
Get-Oscdimg
|
||||||
#>
|
#>
|
||||||
param( [Parameter(Mandatory=$true)]
|
|
||||||
|
param(
|
||||||
|
[Parameter(Mandatory, position=0)]
|
||||||
[string]$oscdimgPath
|
[string]$oscdimgPath
|
||||||
)
|
)
|
||||||
|
|
||||||
$oscdimgPath = "$env:TEMP\oscdimg.exe"
|
$oscdimgPath = "$env:TEMP\oscdimg.exe"
|
||||||
$downloadUrl = "https://github.com/ChrisTitusTech/winutil/raw/main/releases/oscdimg.exe"
|
$downloadUrl = "https://github.com/ChrisTitusTech/winutil/raw/main/releases/oscdimg.exe"
|
||||||
Invoke-RestMethod -Uri $downloadUrl -OutFile $oscdimgPath
|
Invoke-RestMethod -Uri $downloadUrl -OutFile $oscdimgPath
|
||||||
|
@ -4,14 +4,18 @@ function Get-TabXaml {
|
|||||||
Generates XAML for a tab in the WinUtil GUI
|
Generates XAML for a tab in the WinUtil GUI
|
||||||
This function is used to generate the XAML for the applications tab in the WinUtil GUI
|
This function is used to generate the XAML for the applications tab in the WinUtil GUI
|
||||||
It takes the tabname and the number of columns to display the applications in as input and returns the XAML for the tab as output
|
It takes the tabname and the number of columns to display the applications in as input and returns the XAML for the tab as output
|
||||||
|
|
||||||
.PARAMETER tabname
|
.PARAMETER tabname
|
||||||
The name of the tab to generate XAML for
|
The name of the tab to generate XAML for
|
||||||
Note: the 'tabname' parameter must equal one of the json files found in $sync.configs variable
|
Note: the 'tabname' parameter must equal one of the json files found in $sync.configs variable
|
||||||
Otherwise, it'll throw an exception
|
Otherwise, it'll throw an exception
|
||||||
|
|
||||||
.PARAMETER columncount
|
.PARAMETER columncount
|
||||||
The number of columns to display the applications in, default is 0
|
The number of columns to display the applications in, default is 0
|
||||||
|
|
||||||
.OUTPUTS
|
.OUTPUTS
|
||||||
The XAML for the tab
|
The XAML for the tab
|
||||||
|
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
Get-TabXaml "applications" 3
|
Get-TabXaml "applications" 3
|
||||||
#>
|
#>
|
||||||
@ -115,7 +119,7 @@ function Get-TabXaml {
|
|||||||
}
|
}
|
||||||
|
|
||||||
# Dot-source the Get-WPFObjectName function
|
# Dot-source the Get-WPFObjectName function
|
||||||
. .\functions\private\Get-WPFObjectName
|
. "$($sync.PSScriptRoot)\functions\private\Get-WPFObjectName.ps1"
|
||||||
|
|
||||||
$categorycontent = $($category -replace '^.__', '')
|
$categorycontent = $($category -replace '^.__', '')
|
||||||
$categoryname = Get-WPFObjectName -type "Label" -name $categorycontent
|
$categoryname = Get-WPFObjectName -type "Label" -name $categorycontent
|
||||||
@ -188,7 +192,7 @@ function Get-TabXaml {
|
|||||||
|
|
||||||
# else it is a checkbox
|
# else it is a checkbox
|
||||||
default {
|
default {
|
||||||
$checkedStatus = If ($appInfo.Checked -eq $null) {""} Else {" IsChecked=""$($appInfo.Checked)"""}
|
$checkedStatus = If ($appInfo.Checked -eq $null) {""} else {" IsChecked=""$($appInfo.Checked)"""}
|
||||||
if ($appInfo.Link -eq $null) {
|
if ($appInfo.Link -eq $null) {
|
||||||
$blockXml += $precal_indent +
|
$blockXml += $precal_indent +
|
||||||
"<CheckBox Name=""$($appInfo.Name)"" Content=""$($appInfo.Content)""$($checkedStatus) Margin=""5,0""" + " " +
|
"<CheckBox Name=""$($appInfo.Name)"" Content=""$($appInfo.Content)""$($checkedStatus) Margin=""5,0""" + " " +
|
||||||
|
@ -3,10 +3,13 @@ function Get-WPFObjectName {
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
This is a helper function that generates an objectname with the prefix WPF that can be used as a Powershell Variable after compilation.
|
This is a helper function that generates an objectname with the prefix WPF that can be used as a Powershell Variable after compilation.
|
||||||
To achieve this, all characters that are not a-z, A-Z or 0-9 are simply removed from the name.
|
To achieve this, all characters that are not a-z, A-Z or 0-9 are simply removed from the name.
|
||||||
|
|
||||||
.PARAMETER type
|
.PARAMETER type
|
||||||
The type of object for which the name should be generated. (e.g. Label, Button, CheckBox...)
|
The type of object for which the name should be generated. (e.g. Label, Button, CheckBox...)
|
||||||
|
|
||||||
.PARAMETER name
|
.PARAMETER name
|
||||||
The name or description to be used for the object. (invalid characters are removed)
|
The name or description to be used for the object. (invalid characters are removed)
|
||||||
|
|
||||||
.OUTPUTS
|
.OUTPUTS
|
||||||
A string that can be used as a object/variable name in powershell.
|
A string that can be used as a object/variable name in powershell.
|
||||||
For example: WPFLabelMicrosoftTools
|
For example: WPFLabelMicrosoftTools
|
||||||
@ -15,13 +18,14 @@ function Get-WPFObjectName {
|
|||||||
Get-WPFObjectName -type Label -name "Microsoft Tools"
|
Get-WPFObjectName -type Label -name "Microsoft Tools"
|
||||||
#>
|
#>
|
||||||
|
|
||||||
param( [Parameter(Mandatory=$true)]
|
param(
|
||||||
$type,
|
[Parameter(Mandatory, position=0)]
|
||||||
$name
|
[string]$type,
|
||||||
|
|
||||||
|
[Parameter(position=1)]
|
||||||
|
[string]$name
|
||||||
)
|
)
|
||||||
|
|
||||||
$Output = $("WPF"+$type+$name) -replace '[^a-zA-Z0-9]', ''
|
$Output = $("WPF"+$type+$name) -replace '[^a-zA-Z0-9]', ''
|
||||||
|
|
||||||
return $Output
|
return $Output
|
||||||
|
|
||||||
}
|
}
|
@ -18,8 +18,7 @@ Function Get-WinUtilToggleStatus {
|
|||||||
$system = (Get-ItemProperty -path 'HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize').SystemUsesLightTheme
|
$system = (Get-ItemProperty -path 'HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize').SystemUsesLightTheme
|
||||||
if($app -eq 0 -and $system -eq 0) {
|
if($app -eq 0 -and $system -eq 0) {
|
||||||
return $true
|
return $true
|
||||||
}
|
} else {
|
||||||
else{
|
|
||||||
return $false
|
return $false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -27,8 +26,7 @@ Function Get-WinUtilToggleStatus {
|
|||||||
$bingsearch = (Get-ItemProperty -path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Search').BingSearchEnabled
|
$bingsearch = (Get-ItemProperty -path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Search').BingSearchEnabled
|
||||||
if($bingsearch -eq 0) {
|
if($bingsearch -eq 0) {
|
||||||
return $false
|
return $false
|
||||||
}
|
} else {
|
||||||
else{
|
|
||||||
return $true
|
return $true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -36,8 +34,7 @@ Function Get-WinUtilToggleStatus {
|
|||||||
$numlockvalue = (Get-ItemProperty -path 'HKCU:\Control Panel\Keyboard').InitialKeyboardIndicators
|
$numlockvalue = (Get-ItemProperty -path 'HKCU:\Control Panel\Keyboard').InitialKeyboardIndicators
|
||||||
if($numlockvalue -eq 2) {
|
if($numlockvalue -eq 2) {
|
||||||
return $true
|
return $true
|
||||||
}
|
} else {
|
||||||
else{
|
|
||||||
return $false
|
return $false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -45,8 +42,7 @@ Function Get-WinUtilToggleStatus {
|
|||||||
$VerboseStatusvalue = (Get-ItemProperty -path 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System').VerboseStatus
|
$VerboseStatusvalue = (Get-ItemProperty -path 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System').VerboseStatus
|
||||||
if($VerboseStatusvalue -eq 1) {
|
if($VerboseStatusvalue -eq 1) {
|
||||||
return $true
|
return $true
|
||||||
}
|
} else {
|
||||||
else{
|
|
||||||
return $false
|
return $false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -54,8 +50,7 @@ Function Get-WinUtilToggleStatus {
|
|||||||
$hideextvalue = (Get-ItemProperty -path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced').HideFileExt
|
$hideextvalue = (Get-ItemProperty -path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced').HideFileExt
|
||||||
if($hideextvalue -eq 0) {
|
if($hideextvalue -eq 0) {
|
||||||
return $true
|
return $true
|
||||||
}
|
} else {
|
||||||
else{
|
|
||||||
return $false
|
return $false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -63,8 +58,7 @@ Function Get-WinUtilToggleStatus {
|
|||||||
$hidesnap = (Get-ItemProperty -path 'HKCU:\Control Panel\Desktop').WindowArrangementActive
|
$hidesnap = (Get-ItemProperty -path 'HKCU:\Control Panel\Desktop').WindowArrangementActive
|
||||||
if($hidesnap -eq 0) {
|
if($hidesnap -eq 0) {
|
||||||
return $false
|
return $false
|
||||||
}
|
} else {
|
||||||
else{
|
|
||||||
return $true
|
return $true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -72,8 +66,7 @@ Function Get-WinUtilToggleStatus {
|
|||||||
$hidesnap = (Get-ItemProperty -path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced').EnableSnapAssistFlyout
|
$hidesnap = (Get-ItemProperty -path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced').EnableSnapAssistFlyout
|
||||||
if($hidesnap -eq 0) {
|
if($hidesnap -eq 0) {
|
||||||
return $false
|
return $false
|
||||||
}
|
} else {
|
||||||
else{
|
|
||||||
return $true
|
return $true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -81,8 +74,7 @@ Function Get-WinUtilToggleStatus {
|
|||||||
$hidesnap = (Get-ItemProperty -path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced').SnapAssist
|
$hidesnap = (Get-ItemProperty -path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced').SnapAssist
|
||||||
if($hidesnap -eq 0) {
|
if($hidesnap -eq 0) {
|
||||||
return $false
|
return $false
|
||||||
}
|
} else {
|
||||||
else{
|
|
||||||
return $true
|
return $true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -93,8 +85,7 @@ Function Get-WinUtilToggleStatus {
|
|||||||
|
|
||||||
if($MouseSpeed -eq 1 -and $MouseThreshold1 -eq 6 -and $MouseThreshold2 -eq 10) {
|
if($MouseSpeed -eq 1 -and $MouseThreshold1 -eq 6 -and $MouseThreshold2 -eq 10) {
|
||||||
return $true
|
return $true
|
||||||
}
|
} else {
|
||||||
else{
|
|
||||||
return $false
|
return $false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -102,8 +93,7 @@ Function Get-WinUtilToggleStatus {
|
|||||||
$SearchButton = (Get-ItemProperty -path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search").SearchboxTaskbarMode
|
$SearchButton = (Get-ItemProperty -path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search").SearchboxTaskbarMode
|
||||||
if($SearchButton -eq 0) {
|
if($SearchButton -eq 0) {
|
||||||
return $false
|
return $false
|
||||||
}
|
} else {
|
||||||
else{
|
|
||||||
return $true
|
return $true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -111,8 +101,7 @@ Function Get-WinUtilToggleStatus {
|
|||||||
$StickyKeys = (Get-ItemProperty -path 'HKCU:\Control Panel\Accessibility\StickyKeys').Flags
|
$StickyKeys = (Get-ItemProperty -path 'HKCU:\Control Panel\Accessibility\StickyKeys').Flags
|
||||||
if($StickyKeys -eq 58) {
|
if($StickyKeys -eq 58) {
|
||||||
return $false
|
return $false
|
||||||
}
|
} else {
|
||||||
else{
|
|
||||||
return $true
|
return $true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -120,8 +109,7 @@ Function Get-WinUtilToggleStatus {
|
|||||||
$TaskView = (Get-ItemProperty -path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced').ShowTaskViewButton
|
$TaskView = (Get-ItemProperty -path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced').ShowTaskViewButton
|
||||||
if($TaskView -eq 0) {
|
if($TaskView -eq 0) {
|
||||||
return $false
|
return $false
|
||||||
}
|
} else {
|
||||||
else{
|
|
||||||
return $true
|
return $true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -130,8 +118,7 @@ Function Get-WinUtilToggleStatus {
|
|||||||
$HiddenFiles = (Get-ItemProperty -path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced').Hidden
|
$HiddenFiles = (Get-ItemProperty -path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced').Hidden
|
||||||
if($HiddenFiles -eq 0) {
|
if($HiddenFiles -eq 0) {
|
||||||
return $false
|
return $false
|
||||||
}
|
} else {
|
||||||
else{
|
|
||||||
return $true
|
return $true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -140,8 +127,7 @@ Function Get-WinUtilToggleStatus {
|
|||||||
$TaskbarWidgets = (Get-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced").TaskBarDa
|
$TaskbarWidgets = (Get-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced").TaskBarDa
|
||||||
if($TaskbarWidgets -eq 0) {
|
if($TaskbarWidgets -eq 0) {
|
||||||
return $false
|
return $false
|
||||||
}
|
} else {
|
||||||
else{
|
|
||||||
return $true
|
return $true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -149,8 +135,7 @@ Function Get-WinUtilToggleStatus {
|
|||||||
$TaskbarAlignment = (Get-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced").TaskbarAl
|
$TaskbarAlignment = (Get-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced").TaskbarAl
|
||||||
if($TaskbarAlignment -eq 0) {
|
if($TaskbarAlignment -eq 0) {
|
||||||
return $false
|
return $false
|
||||||
}
|
} else {
|
||||||
else{
|
|
||||||
return $true
|
return $true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -158,8 +143,7 @@ Function Get-WinUtilToggleStatus {
|
|||||||
$DetailedBSoD = (Get-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\CrashControl').DisplayParameters
|
$DetailedBSoD = (Get-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\CrashControl').DisplayParameters
|
||||||
if($DetailedBSoD -eq 0) {
|
if($DetailedBSoD -eq 0) {
|
||||||
return $false
|
return $false
|
||||||
}
|
} else {
|
||||||
else{
|
|
||||||
return $true
|
return $true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -14,13 +14,12 @@ function Get-WinUtilVariables {
|
|||||||
$keys = ($sync.keys).where{ $_ -like "WPF*" }
|
$keys = ($sync.keys).where{ $_ -like "WPF*" }
|
||||||
if ($Type) {
|
if ($Type) {
|
||||||
$output = $keys | ForEach-Object {
|
$output = $keys | ForEach-Object {
|
||||||
Try {
|
try {
|
||||||
$objType = $sync["$psitem"].GetType().Name
|
$objType = $sync["$psitem"].GetType().Name
|
||||||
if ($Type -contains $objType) {
|
if ($Type -contains $objType) {
|
||||||
Write-Output $psitem
|
Write-Output $psitem
|
||||||
}
|
}
|
||||||
}
|
} catch {
|
||||||
Catch {
|
|
||||||
<#I am here so errors don't get outputted for a couple variables that don't have the .GetType() attribute#>
|
<#I am here so errors don't get outputted for a couple variables that don't have the .GetType() attribute#>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -8,7 +8,7 @@ function Get-WinUtilWingetLatest {
|
|||||||
# Invoke-WebRequest is notoriously slow when the byte progress is displayed. The following lines disable the progress bar and reset them at the end of the function
|
# Invoke-WebRequest is notoriously slow when the byte progress is displayed. The following lines disable the progress bar and reset them at the end of the function
|
||||||
$PreviousProgressPreference = $ProgressPreference
|
$PreviousProgressPreference = $ProgressPreference
|
||||||
$ProgressPreference = "silentlyContinue"
|
$ProgressPreference = "silentlyContinue"
|
||||||
Try{
|
try {
|
||||||
# Grabs the latest release of Winget from the Github API for the install process.
|
# Grabs the latest release of Winget from the Github API for the install process.
|
||||||
$response = Invoke-RestMethod -Uri "https://api.github.com/repos/microsoft/Winget-cli/releases/latest" -Method Get -ErrorAction Stop
|
$response = Invoke-RestMethod -Uri "https://api.github.com/repos/microsoft/Winget-cli/releases/latest" -Method Get -ErrorAction Stop
|
||||||
$latestVersion = $response.tag_name #Stores version number of latest release.
|
$latestVersion = $response.tag_name #Stores version number of latest release.
|
||||||
@ -19,8 +19,7 @@ function Get-WinUtilWingetLatest {
|
|||||||
Invoke-WebRequest -Uri $licenseWingetUrl -OutFile $ENV:TEMP\License1.xml
|
Invoke-WebRequest -Uri $licenseWingetUrl -OutFile $ENV:TEMP\License1.xml
|
||||||
# The only pain is that the msixbundle for winget-cli is 246MB. In some situations this can take a bit, with slower connections.
|
# The only pain is that the msixbundle for winget-cli is 246MB. In some situations this can take a bit, with slower connections.
|
||||||
Invoke-WebRequest -Uri $assetUrl -OutFile $ENV:TEMP\Microsoft.DesktopAppInstaller.msixbundle
|
Invoke-WebRequest -Uri $assetUrl -OutFile $ENV:TEMP\Microsoft.DesktopAppInstaller.msixbundle
|
||||||
}
|
} catch {
|
||||||
Catch{
|
|
||||||
throw [WingetFailedInstall]::new('Failed to get latest Winget release and license')
|
throw [WingetFailedInstall]::new('Failed to get latest Winget release and license')
|
||||||
}
|
}
|
||||||
$ProgressPreference = $PreviousProgressPreference
|
$ProgressPreference = $PreviousProgressPreference
|
||||||
|
@ -17,13 +17,12 @@ function Get-WinUtilWingetPrerequisites {
|
|||||||
$fileUIXaml = "https://github.com/microsoft/microsoft-ui-xaml/releases/download/v${versionUIXamlPatch}/Microsoft.UI.Xaml.${versionUIXamlMinor}.x64.appx"
|
$fileUIXaml = "https://github.com/microsoft/microsoft-ui-xaml/releases/download/v${versionUIXamlPatch}/Microsoft.UI.Xaml.${versionUIXamlMinor}.x64.appx"
|
||||||
# Write-Host "$fileUIXaml"
|
# Write-Host "$fileUIXaml"
|
||||||
|
|
||||||
Try{
|
try {
|
||||||
Write-Host "Downloading Microsoft.VCLibs Dependency..."
|
Write-Host "Downloading Microsoft.VCLibs Dependency..."
|
||||||
Invoke-WebRequest -Uri $fileVCLibs -OutFile $ENV:TEMP\Microsoft.VCLibs.x64.Desktop.appx
|
Invoke-WebRequest -Uri $fileVCLibs -OutFile $ENV:TEMP\Microsoft.VCLibs.x64.Desktop.appx
|
||||||
Write-Host "Downloading Microsoft.UI.Xaml Dependency...`n"
|
Write-Host "Downloading Microsoft.UI.Xaml Dependency...`n"
|
||||||
Invoke-WebRequest -Uri $fileUIXaml -OutFile $ENV:TEMP\Microsoft.UI.Xaml.x64.appx
|
Invoke-WebRequest -Uri $fileUIXaml -OutFile $ENV:TEMP\Microsoft.UI.Xaml.x64.appx
|
||||||
}
|
} catch {
|
||||||
Catch{
|
|
||||||
throw [WingetFailedInstall]::new('Failed to install prerequsites')
|
throw [WingetFailedInstall]::new('Failed to install prerequsites')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -18,8 +18,7 @@ function Install-WinUtilChoco {
|
|||||||
Set-ExecutionPolicy Bypass -Scope Process -Force; Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) -ErrorAction Stop
|
Set-ExecutionPolicy Bypass -Scope Process -Force; Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) -ErrorAction Stop
|
||||||
powershell choco feature enable -n allowGlobalConfirmation
|
powershell choco feature enable -n allowGlobalConfirmation
|
||||||
|
|
||||||
}
|
} catch {
|
||||||
Catch {
|
|
||||||
Write-Host "===========================================" -Foregroundcolor Red
|
Write-Host "===========================================" -Foregroundcolor Red
|
||||||
Write-Host "-- Chocolatey failed to install ---" -Foregroundcolor Red
|
Write-Host "-- Chocolatey failed to install ---" -Foregroundcolor Red
|
||||||
Write-Host "===========================================" -Foregroundcolor Red
|
Write-Host "===========================================" -Foregroundcolor Red
|
||||||
|
@ -9,7 +9,7 @@ function Install-WinUtilWinget {
|
|||||||
#>
|
#>
|
||||||
$isWingetInstalled = Test-WinUtilPackageManager -winget
|
$isWingetInstalled = Test-WinUtilPackageManager -winget
|
||||||
|
|
||||||
Try {
|
try {
|
||||||
if ($isWingetInstalled -eq "installed") {
|
if ($isWingetInstalled -eq "installed") {
|
||||||
Write-Host "`nWinget is already installed.`r" -ForegroundColor Green
|
Write-Host "`nWinget is already installed.`r" -ForegroundColor Green
|
||||||
return
|
return
|
||||||
@ -50,17 +50,17 @@ function Install-WinUtilWinget {
|
|||||||
# Winget only needs a refresh of the environment variables to be used.
|
# Winget only needs a refresh of the environment variables to be used.
|
||||||
Write-Output "Refreshing Environment Variables...`n"
|
Write-Output "Refreshing Environment Variables...`n"
|
||||||
$ENV:PATH = [System.Environment]::GetEnvironmentVariable("Path", "Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path", "User")
|
$ENV:PATH = [System.Environment]::GetEnvironmentVariable("Path", "Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path", "User")
|
||||||
} Catch {
|
} catch {
|
||||||
Write-Host "Failure detected while installing via GitHub method. Continuing with Chocolatey method as fallback." -ForegroundColor Red
|
Write-Host "Failure detected while installing via GitHub method. Continuing with Chocolatey method as fallback." -ForegroundColor Red
|
||||||
# In case install fails via GitHub method.
|
# In case install fails via GitHub method.
|
||||||
Try {
|
try {
|
||||||
# Install Choco if not already present
|
# Install Choco if not already present
|
||||||
Install-WinUtilChoco
|
Install-WinUtilChoco
|
||||||
Start-Process -Verb runas -FilePath powershell.exe -ArgumentList "choco install winget-cli"
|
Start-Process -Verb runas -FilePath powershell.exe -ArgumentList "choco install winget-cli"
|
||||||
Write-Host "Winget Installed" -ForegroundColor Green
|
Write-Host "Winget Installed" -ForegroundColor Green
|
||||||
Write-Output "Refreshing Environment Variables...`n"
|
Write-Output "Refreshing Environment Variables...`n"
|
||||||
$ENV:PATH = [System.Environment]::GetEnvironmentVariable("Path", "Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path", "User")
|
$ENV:PATH = [System.Environment]::GetEnvironmentVariable("Path", "Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path", "User")
|
||||||
} Catch {
|
} catch {
|
||||||
throw [WingetFailedInstall]::new('Failed to install!')
|
throw [WingetFailedInstall]::new('Failed to install!')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,19 +1,20 @@
|
|||||||
function Test-CompatibleImage() {
|
function Test-CompatibleImage() {
|
||||||
<#
|
<#
|
||||||
|
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Checks the version of a Windows image and determines whether or not it is compatible with a specific feature depending on a desired version
|
Checks the version of a Windows image and determines whether or not it is compatible with a specific feature depending on a desired version
|
||||||
|
|
||||||
.PARAMETER Name
|
.PARAMETER Name
|
||||||
imgVersion - The version of the Windows image
|
imgVersion - The version of the Windows image
|
||||||
desiredVersion - The version to compare the image version with
|
desiredVersion - The version to compare the image version with
|
||||||
|
|
||||||
#>
|
#>
|
||||||
|
|
||||||
param
|
param
|
||||||
(
|
(
|
||||||
[Parameter(Mandatory = $true, Position=0)] [string] $imgVersion,
|
[Parameter(Mandatory, position=0)]
|
||||||
[Parameter(Mandatory = $true, Position=1)] [Version] $desiredVersion
|
[string]$imgVersion,
|
||||||
|
|
||||||
|
[Parameter(Mandatory, position=1)]
|
||||||
|
[Version]$desiredVersion
|
||||||
)
|
)
|
||||||
|
|
||||||
try {
|
try {
|
||||||
@ -26,7 +27,6 @@ function Test-CompatibleImage() {
|
|||||||
|
|
||||||
function Remove-Features([switch]$dumpFeatures = $false, [switch]$keepDefender = $false) {
|
function Remove-Features([switch]$dumpFeatures = $false, [switch]$keepDefender = $false) {
|
||||||
<#
|
<#
|
||||||
|
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Removes certain features from ISO image
|
Removes certain features from ISO image
|
||||||
|
|
||||||
@ -36,13 +36,10 @@ function Remove-Features([switch] $dumpFeatures = $false, [switch] $keepDefender
|
|||||||
|
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
Remove-Features -keepDefender:$false
|
Remove-Features -keepDefender:$false
|
||||||
|
|
||||||
#>
|
#>
|
||||||
try
|
try {
|
||||||
{
|
|
||||||
$featlist = (Get-WindowsOptionalFeature -Path $scratchDir).FeatureName
|
$featlist = (Get-WindowsOptionalFeature -Path $scratchDir).FeatureName
|
||||||
if ($dumpFeatures)
|
if ($dumpFeatures) {
|
||||||
{
|
|
||||||
$featlist > allfeaturesdump.txt
|
$featlist > allfeaturesdump.txt
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -57,8 +54,7 @@ function Remove-Features([switch] $dumpFeatures = $false, [switch] $keepDefender
|
|||||||
|
|
||||||
if ($keepDefender) { $featlist = $featlist | Where-Object { $_ -NotLike "*Defender*" }}
|
if ($keepDefender) { $featlist = $featlist | Where-Object { $_ -NotLike "*Defender*" }}
|
||||||
|
|
||||||
foreach($feature in $featlist)
|
foreach($feature in $featlist) {
|
||||||
{
|
|
||||||
$status = "Removing feature $feature"
|
$status = "Removing feature $feature"
|
||||||
Write-Progress -Activity "Removing features" -Status $status -PercentComplete ($counter++/$featlist.Count*100)
|
Write-Progress -Activity "Removing features" -Status $status -PercentComplete ($counter++/$featlist.Count*100)
|
||||||
Write-Debug "Removing feature $feature"
|
Write-Debug "Removing feature $feature"
|
||||||
@ -66,17 +62,13 @@ function Remove-Features([switch] $dumpFeatures = $false, [switch] $keepDefender
|
|||||||
}
|
}
|
||||||
Write-Progress -Activity "Removing features" -Status "Ready" -Completed
|
Write-Progress -Activity "Removing features" -Status "Ready" -Completed
|
||||||
Write-Host "You can re-enable the disabled features at any time, using either Windows Update or the SxS folder in <installation media>\Sources."
|
Write-Host "You can re-enable the disabled features at any time, using either Windows Update or the SxS folder in <installation media>\Sources."
|
||||||
}
|
} catch {
|
||||||
catch
|
|
||||||
{
|
|
||||||
Write-Host "Unable to get information about the features. MicroWin processing will continue, but features will not be processed"
|
Write-Host "Unable to get information about the features. MicroWin processing will continue, but features will not be processed"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function Remove-Packages
|
function Remove-Packages {
|
||||||
{
|
try {
|
||||||
try
|
|
||||||
{
|
|
||||||
$pkglist = (Get-WindowsPackage -Path "$scratchDir").PackageName
|
$pkglist = (Get-WindowsPackage -Path "$scratchDir").PackageName
|
||||||
|
|
||||||
$pkglist = $pkglist | Where-Object {
|
$pkglist = $pkglist | Where-Object {
|
||||||
@ -117,31 +109,25 @@ function Remove-Packages
|
|||||||
$_ -NotLike "*UI.XaML*"
|
$_ -NotLike "*UI.XaML*"
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($pkg in $pkglist)
|
foreach ($pkg in $pkglist) {
|
||||||
{
|
|
||||||
try {
|
try {
|
||||||
$status = "Removing $pkg"
|
$status = "Removing $pkg"
|
||||||
Write-Progress -Activity "Removing Apps" -Status $status -PercentComplete ($counter++/$pkglist.Count*100)
|
Write-Progress -Activity "Removing Apps" -Status $status -PercentComplete ($counter++/$pkglist.Count*100)
|
||||||
Remove-WindowsPackage -Path "$scratchDir" -PackageName $pkg -NoRestart -ErrorAction SilentlyContinue
|
Remove-WindowsPackage -Path "$scratchDir" -PackageName $pkg -NoRestart -ErrorAction SilentlyContinue
|
||||||
}
|
} catch {
|
||||||
catch {
|
|
||||||
# This can happen if the package that is being removed is a permanent one, like FodMetadata
|
# This can happen if the package that is being removed is a permanent one, like FodMetadata
|
||||||
Write-Host "Could not remove OS package $($pkg)"
|
Write-Host "Could not remove OS package $($pkg)"
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Write-Progress -Activity "Removing Apps" -Status "Ready" -Completed
|
Write-Progress -Activity "Removing Apps" -Status "Ready" -Completed
|
||||||
}
|
} catch {
|
||||||
catch
|
|
||||||
{
|
|
||||||
Write-Host "Unable to get information about the packages. MicroWin processing will continue, but packages will not be processed"
|
Write-Host "Unable to get information about the packages. MicroWin processing will continue, but packages will not be processed"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function Remove-ProvisionedPackages([switch] $keepSecurity = $false)
|
function Remove-ProvisionedPackages([switch]$keepSecurity = $false) {
|
||||||
{
|
|
||||||
<#
|
<#
|
||||||
|
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Removes AppX packages from a Windows image during MicroWin processing
|
Removes AppX packages from a Windows image during MicroWin processing
|
||||||
|
|
||||||
@ -150,7 +136,6 @@ function Remove-ProvisionedPackages([switch] $keepSecurity = $false)
|
|||||||
|
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
Remove-ProvisionedPackages -keepSecurity:$false
|
Remove-ProvisionedPackages -keepSecurity:$false
|
||||||
|
|
||||||
#>
|
#>
|
||||||
$appxProvisionedPackages = Get-AppxProvisionedPackage -Path "$($scratchDir)" | Where-Object {
|
$appxProvisionedPackages = Get-AppxProvisionedPackage -Path "$($scratchDir)" | Where-Object {
|
||||||
$_.PackageName -NotLike "*AppInstaller*" -AND
|
$_.PackageName -NotLike "*AppInstaller*" -AND
|
||||||
@ -165,32 +150,26 @@ function Remove-ProvisionedPackages([switch] $keepSecurity = $false)
|
|||||||
$_.PackageName -NotLike "*Foundation*"
|
$_.PackageName -NotLike "*Foundation*"
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($?)
|
if ($?) {
|
||||||
{
|
|
||||||
if ($keepSecurity) { $appxProvisionedPackages = $appxProvisionedPackages | Where-Object { $_.PackageName -NotLike "*SecHealthUI*" }}
|
if ($keepSecurity) { $appxProvisionedPackages = $appxProvisionedPackages | Where-Object { $_.PackageName -NotLike "*SecHealthUI*" }}
|
||||||
$counter = 0
|
$counter = 0
|
||||||
foreach ($appx in $appxProvisionedPackages)
|
foreach ($appx in $appxProvisionedPackages) {
|
||||||
{
|
|
||||||
$status = "Removing Provisioned $($appx.PackageName)"
|
$status = "Removing Provisioned $($appx.PackageName)"
|
||||||
Write-Progress -Activity "Removing Provisioned Apps" -Status $status -PercentComplete ($counter++/$appxProvisionedPackages.Count*100)
|
Write-Progress -Activity "Removing Provisioned Apps" -Status $status -PercentComplete ($counter++/$appxProvisionedPackages.Count*100)
|
||||||
try {
|
try {
|
||||||
Remove-AppxProvisionedPackage -Path $scratchDir -PackageName $appx.PackageName -ErrorAction SilentlyContinue
|
Remove-AppxProvisionedPackage -Path $scratchDir -PackageName $appx.PackageName -ErrorAction SilentlyContinue
|
||||||
}
|
} catch {
|
||||||
catch {
|
|
||||||
Write-Host "Application $($appx.PackageName) could not be removed"
|
Write-Host "Application $($appx.PackageName) could not be removed"
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Write-Progress -Activity "Removing Provisioned Apps" -Status "Ready" -Completed
|
Write-Progress -Activity "Removing Provisioned Apps" -Status "Ready" -Completed
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
Write-Host "Could not get Provisioned App information. Skipping process..."
|
Write-Host "Could not get Provisioned App information. Skipping process..."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function Copy-ToUSB([string] $fileToCopy)
|
function Copy-ToUSB([string]$fileToCopy) {
|
||||||
{
|
|
||||||
foreach ($volume in Get-Volume) {
|
foreach ($volume in Get-Volume) {
|
||||||
if ($volume -and $volume.FileSystemLabel -ieq "ventoy") {
|
if ($volume -and $volume.FileSystemLabel -ieq "ventoy") {
|
||||||
$destinationPath = "$($volume.DriveLetter):\"
|
$destinationPath = "$($volume.DriveLetter):\"
|
||||||
@ -214,8 +193,7 @@ function Copy-ToUSB([string] $fileToCopy)
|
|||||||
Write-Host "Ventoy USB Key is not inserted"
|
Write-Host "Ventoy USB Key is not inserted"
|
||||||
}
|
}
|
||||||
|
|
||||||
function Remove-FileOrDirectory([string] $pathToDelete, [string] $mask = "", [switch] $Directory = $false)
|
function Remove-FileOrDirectory([string]$pathToDelete, [string]$mask = "", [switch]$Directory = $false) {
|
||||||
{
|
|
||||||
if(([string]::IsNullOrEmpty($pathToDelete))) { return }
|
if(([string]::IsNullOrEmpty($pathToDelete))) { return }
|
||||||
if (-not (Test-Path -Path "$($pathToDelete)")) { return }
|
if (-not (Test-Path -Path "$($pathToDelete)")) { return }
|
||||||
|
|
||||||
@ -240,25 +218,19 @@ function Remove-FileOrDirectory([string] $pathToDelete, [string] $mask = "", [sw
|
|||||||
|
|
||||||
$itemsToDelete = [System.Collections.ArrayList]::new()
|
$itemsToDelete = [System.Collections.ArrayList]::new()
|
||||||
|
|
||||||
if ($mask -eq "")
|
if ($mask -eq "") {
|
||||||
{
|
|
||||||
Write-Debug "Adding $($pathToDelete) to array."
|
Write-Debug "Adding $($pathToDelete) to array."
|
||||||
[void]$itemsToDelete.Add($pathToDelete)
|
[void]$itemsToDelete.Add($pathToDelete)
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
Write-Debug "Adding $($pathToDelete) to array and mask is $($mask)"
|
Write-Debug "Adding $($pathToDelete) to array and mask is $($mask)"
|
||||||
if ($Directory) { $itemsToDelete = Get-ChildItem $pathToDelete -Include $mask -Recurse -Directory }
|
if ($Directory) { $itemsToDelete = Get-ChildItem $pathToDelete -Include $mask -Recurse -Directory } else { $itemsToDelete = Get-ChildItem $pathToDelete -Include $mask -Recurse }
|
||||||
else { $itemsToDelete = Get-ChildItem $pathToDelete -Include $mask -Recurse }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach($itemToDelete in $itemsToDelete)
|
foreach($itemToDelete in $itemsToDelete) {
|
||||||
{
|
|
||||||
$status = "Deleting $($itemToDelete)"
|
$status = "Deleting $($itemToDelete)"
|
||||||
Write-Progress -Activity "Removing Items" -Status $status -PercentComplete ($counter++/$itemsToDelete.Count*100)
|
Write-Progress -Activity "Removing Items" -Status $status -PercentComplete ($counter++/$itemsToDelete.Count*100)
|
||||||
|
|
||||||
if (Test-Path -Path "$($itemToDelete)" -PathType Container)
|
if (Test-Path -Path "$($itemToDelete)" -PathType Container) {
|
||||||
{
|
|
||||||
$status = "Deleting directory: $($itemToDelete)"
|
$status = "Deleting directory: $($itemToDelete)"
|
||||||
|
|
||||||
takeown /r /d $yesNo[0] /a /f "$($itemToDelete)"
|
takeown /r /d $yesNo[0] /a /f "$($itemToDelete)"
|
||||||
@ -267,8 +239,7 @@ function Remove-FileOrDirectory([string] $pathToDelete, [string] $mask = "", [sw
|
|||||||
icacls $itemToDelete /grant "*S-1-5-32-544:(OI)(CI)F" /t /c /q
|
icacls $itemToDelete /grant "*S-1-5-32-544:(OI)(CI)F" /t /c /q
|
||||||
Remove-Item -Force -Recurse "$($itemToDelete)"
|
Remove-Item -Force -Recurse "$($itemToDelete)"
|
||||||
}
|
}
|
||||||
elseif (Test-Path -Path "$($itemToDelete)" -PathType Leaf)
|
elseif (Test-Path -Path "$($itemToDelete)" -PathType Leaf) {
|
||||||
{
|
|
||||||
$status = "Deleting file: $($itemToDelete)"
|
$status = "Deleting file: $($itemToDelete)"
|
||||||
|
|
||||||
takeown /a /f "$($itemToDelete)"
|
takeown /a /f "$($itemToDelete)"
|
||||||
@ -379,13 +350,10 @@ function New-Unattend {
|
|||||||
</component>
|
</component>
|
||||||
</settings>
|
</settings>
|
||||||
'@
|
'@
|
||||||
if ((Test-CompatibleImage $imgVersion $([System.Version]::new(10,0,22000,1))) -eq $false)
|
if ((Test-CompatibleImage $imgVersion $([System.Version]::new(10,0,22000,1))) -eq $false) {
|
||||||
{
|
|
||||||
# Replace the placeholder text with an empty string to make it valid for Windows 10 Setup
|
# Replace the placeholder text with an empty string to make it valid for Windows 10 Setup
|
||||||
$unattend = $unattend.Replace("<#REPLACEME#>", "").Trim()
|
$unattend = $unattend.Replace("<#REPLACEME#>", "").Trim()
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
# Replace the placeholder text with the Specialize pass
|
# Replace the placeholder text with the Specialize pass
|
||||||
$unattend = $unattend.Replace("<#REPLACEME#>", $specPass).Trim()
|
$unattend = $unattend.Replace("<#REPLACEME#>", $specPass).Trim()
|
||||||
}
|
}
|
||||||
@ -472,8 +440,7 @@ function New-FirstRun {
|
|||||||
$firstRun = @'
|
$firstRun = @'
|
||||||
# Set the global error action preference to continue
|
# Set the global error action preference to continue
|
||||||
$ErrorActionPreference = "Continue"
|
$ErrorActionPreference = "Continue"
|
||||||
function Remove-RegistryValue
|
function Remove-RegistryValue {
|
||||||
{
|
|
||||||
param (
|
param (
|
||||||
[Parameter(Mandatory = $true)]
|
[Parameter(Mandatory = $true)]
|
||||||
[string]$RegistryPath,
|
[string]$RegistryPath,
|
||||||
@ -483,30 +450,23 @@ function New-FirstRun {
|
|||||||
)
|
)
|
||||||
|
|
||||||
# Check if the registry path exists
|
# Check if the registry path exists
|
||||||
if (Test-Path -Path $RegistryPath)
|
if (Test-Path -Path $RegistryPath) {
|
||||||
{
|
|
||||||
$registryValue = Get-ItemProperty -Path $RegistryPath -Name $ValueName -ErrorAction SilentlyContinue
|
$registryValue = Get-ItemProperty -Path $RegistryPath -Name $ValueName -ErrorAction SilentlyContinue
|
||||||
|
|
||||||
# Check if the registry value exists
|
# Check if the registry value exists
|
||||||
if ($registryValue)
|
if ($registryValue) {
|
||||||
{
|
|
||||||
# Remove the registry value
|
# Remove the registry value
|
||||||
Remove-ItemProperty -Path $RegistryPath -Name $ValueName -Force
|
Remove-ItemProperty -Path $RegistryPath -Name $ValueName -Force
|
||||||
Write-Host "Registry value '$ValueName' removed from '$RegistryPath'."
|
Write-Host "Registry value '$ValueName' removed from '$RegistryPath'."
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
Write-Host "Registry value '$ValueName' not found in '$RegistryPath'."
|
Write-Host "Registry value '$ValueName' not found in '$RegistryPath'."
|
||||||
}
|
}
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
Write-Host "Registry path '$RegistryPath' not found."
|
Write-Host "Registry path '$RegistryPath' not found."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function Stop-UnnecessaryServices
|
function Stop-UnnecessaryServices {
|
||||||
{
|
|
||||||
$servicesToExclude = @(
|
$servicesToExclude = @(
|
||||||
"AudioSrv",
|
"AudioSrv",
|
||||||
"AudioEndpointBuilder",
|
"AudioEndpointBuilder",
|
||||||
@ -573,8 +533,7 @@ function New-FirstRun {
|
|||||||
)
|
)
|
||||||
|
|
||||||
$runningServices = Get-Service | Where-Object { $servicesToExclude -notcontains $_.Name }
|
$runningServices = Get-Service | Where-Object { $servicesToExclude -notcontains $_.Name }
|
||||||
foreach($service in $runningServices)
|
foreach($service in $runningServices) {
|
||||||
{
|
|
||||||
Stop-Service -Name $service.Name -PassThru
|
Stop-Service -Name $service.Name -PassThru
|
||||||
Set-Service $service.Name -StartupType Manual
|
Set-Service $service.Name -StartupType Manual
|
||||||
"Stopping service $($service.Name)" | Out-File -FilePath c:\windows\LogFirstRun.txt -Append -NoClobber
|
"Stopping service $($service.Name)" | Out-File -FilePath c:\windows\LogFirstRun.txt -Append -NoClobber
|
||||||
@ -613,10 +572,8 @@ function New-FirstRun {
|
|||||||
# Delete Edge Icon from the desktop
|
# Delete Edge Icon from the desktop
|
||||||
$edgeShortcutFiles = Get-ChildItem -Path $desktopPath -Filter "*Edge*.lnk"
|
$edgeShortcutFiles = Get-ChildItem -Path $desktopPath -Filter "*Edge*.lnk"
|
||||||
# Check if Edge shortcuts exist on the desktop
|
# Check if Edge shortcuts exist on the desktop
|
||||||
if ($edgeShortcutFiles)
|
if ($edgeShortcutFiles) {
|
||||||
{
|
foreach ($shortcutFile in $edgeShortcutFiles) {
|
||||||
foreach ($shortcutFile in $edgeShortcutFiles)
|
|
||||||
{
|
|
||||||
# Remove each Edge shortcut
|
# Remove each Edge shortcut
|
||||||
Remove-Item -Path $shortcutFile.FullName -Force
|
Remove-Item -Path $shortcutFile.FullName -Force
|
||||||
Write-Host "Edge shortcut '$($shortcutFile.Name)' removed from the desktop."
|
Write-Host "Edge shortcut '$($shortcutFile.Name)' removed from the desktop."
|
||||||
@ -639,8 +596,7 @@ function New-FirstRun {
|
|||||||
# Create a shortcut object
|
# Create a shortcut object
|
||||||
$shortcut = $shell.CreateShortcut($shortcutPath)
|
$shortcut = $shell.CreateShortcut($shortcutPath)
|
||||||
|
|
||||||
if (Test-Path -Path "c:\Windows\cttlogo.png")
|
if (Test-Path -Path "c:\Windows\cttlogo.png") {
|
||||||
{
|
|
||||||
$shortcut.IconLocation = "c:\Windows\cttlogo.png"
|
$shortcut.IconLocation = "c:\Windows\cttlogo.png"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -9,25 +9,21 @@ function Invoke-WinUtilBingSearch {
|
|||||||
|
|
||||||
#>
|
#>
|
||||||
Param($Enabled)
|
Param($Enabled)
|
||||||
Try{
|
try {
|
||||||
if ($Enabled -eq $false) {
|
if ($Enabled -eq $false) {
|
||||||
Write-Host "Enabling Bing Search"
|
Write-Host "Enabling Bing Search"
|
||||||
$value = 1
|
$value = 1
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
Write-Host "Disabling Bing Search"
|
Write-Host "Disabling Bing Search"
|
||||||
$value = 0
|
$value = 0
|
||||||
}
|
}
|
||||||
$Path = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search"
|
$Path = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search"
|
||||||
Set-ItemProperty -Path $Path -Name BingSearchEnabled -Value $value
|
Set-ItemProperty -Path $Path -Name BingSearchEnabled -Value $value
|
||||||
}
|
} catch [System.Security.SecurityException] {
|
||||||
Catch [System.Security.SecurityException] {
|
|
||||||
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
||||||
}
|
} catch [System.Management.Automation.ItemNotFoundException] {
|
||||||
Catch [System.Management.Automation.ItemNotFoundException] {
|
|
||||||
Write-Warning $psitem.Exception.ErrorRecord
|
Write-Warning $psitem.Exception.ErrorRecord
|
||||||
}
|
} catch {
|
||||||
Catch{
|
|
||||||
Write-Warning "Unable to set $Name due to unhandled exception"
|
Write-Warning "Unable to set $Name due to unhandled exception"
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
Write-Warning $psitem.Exception.StackTrace
|
||||||
}
|
}
|
||||||
|
@ -57,8 +57,7 @@ Function Invoke-WinUtilCurrentSystem {
|
|||||||
if ($expectedValue -notlike $actualValue) {
|
if ($expectedValue -notlike $actualValue) {
|
||||||
$values += $False
|
$values += $False
|
||||||
}
|
}
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
$values += $False
|
$values += $False
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -99,4 +98,3 @@ Function Invoke-WinUtilCurrentSystem {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -9,12 +9,11 @@ Function Invoke-WinUtilDarkMode {
|
|||||||
|
|
||||||
#>
|
#>
|
||||||
Param($DarkMoveEnabled)
|
Param($DarkMoveEnabled)
|
||||||
Try{
|
try {
|
||||||
if ($DarkMoveEnabled -eq $false) {
|
if ($DarkMoveEnabled -eq $false) {
|
||||||
Write-Host "Enabling Dark Mode"
|
Write-Host "Enabling Dark Mode"
|
||||||
$DarkMoveValue = 0
|
$DarkMoveValue = 0
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
Write-Host "Disabling Dark Mode"
|
Write-Host "Disabling Dark Mode"
|
||||||
$DarkMoveValue = 1
|
$DarkMoveValue = 1
|
||||||
}
|
}
|
||||||
@ -22,14 +21,11 @@ Function Invoke-WinUtilDarkMode {
|
|||||||
$Path = "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize"
|
$Path = "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize"
|
||||||
Set-ItemProperty -Path $Path -Name AppsUseLightTheme -Value $DarkMoveValue
|
Set-ItemProperty -Path $Path -Name AppsUseLightTheme -Value $DarkMoveValue
|
||||||
Set-ItemProperty -Path $Path -Name SystemUsesLightTheme -Value $DarkMoveValue
|
Set-ItemProperty -Path $Path -Name SystemUsesLightTheme -Value $DarkMoveValue
|
||||||
}
|
} catch [System.Security.SecurityException] {
|
||||||
Catch [System.Security.SecurityException] {
|
|
||||||
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
||||||
}
|
} catch [System.Management.Automation.ItemNotFoundException] {
|
||||||
Catch [System.Management.Automation.ItemNotFoundException] {
|
|
||||||
Write-Warning $psitem.Exception.ErrorRecord
|
Write-Warning $psitem.Exception.ErrorRecord
|
||||||
}
|
} catch {
|
||||||
Catch{
|
|
||||||
Write-Warning "Unable to set $Name due to unhandled exception"
|
Write-Warning "Unable to set $Name due to unhandled exception"
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
Write-Warning $psitem.Exception.StackTrace
|
||||||
}
|
}
|
||||||
|
@ -8,26 +8,22 @@ Function Invoke-WinUtilDetailedBSoD {
|
|||||||
|
|
||||||
#>
|
#>
|
||||||
Param($Enabled)
|
Param($Enabled)
|
||||||
Try{
|
try {
|
||||||
if ($Enabled -eq $false) {
|
if ($Enabled -eq $false) {
|
||||||
Write-Host "Enabling Detailed BSoD"
|
Write-Host "Enabling Detailed BSoD"
|
||||||
$value = 1
|
$value = 1
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
Write-Host "Disabling Detailed BSoD"
|
Write-Host "Disabling Detailed BSoD"
|
||||||
$value =0
|
$value =0
|
||||||
}
|
}
|
||||||
|
|
||||||
$Path = "HKLM:\SYSTEM\CurrentControlSet\Control\CrashControl"
|
$Path = "HKLM:\SYSTEM\CurrentControlSet\Control\CrashControl"
|
||||||
Set-ItemProperty -Path $Path -Name DisplayParameters -Value $value
|
Set-ItemProperty -Path $Path -Name DisplayParameters -Value $value
|
||||||
}
|
} catch [System.Security.SecurityException] {
|
||||||
Catch [System.Security.SecurityException] {
|
|
||||||
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
||||||
}
|
} catch [System.Management.Automation.ItemNotFoundException] {
|
||||||
Catch [System.Management.Automation.ItemNotFoundException] {
|
|
||||||
Write-Warning $psitem.Exception.ErrorRecord
|
Write-Warning $psitem.Exception.ErrorRecord
|
||||||
}
|
} catch {
|
||||||
Catch{
|
|
||||||
Write-Warning "Unable to set $Name due to unhandled exception"
|
Write-Warning "Unable to set $Name due to unhandled exception"
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
Write-Warning $psitem.Exception.StackTrace
|
||||||
}
|
}
|
||||||
|
@ -15,17 +15,14 @@ function Invoke-WinUtilFeatureInstall {
|
|||||||
$CheckBox | ForEach-Object {
|
$CheckBox | ForEach-Object {
|
||||||
if($sync.configs.feature.$psitem.feature) {
|
if($sync.configs.feature.$psitem.feature) {
|
||||||
Foreach( $feature in $sync.configs.feature.$psitem.feature ) {
|
Foreach( $feature in $sync.configs.feature.$psitem.feature ) {
|
||||||
Try{
|
try {
|
||||||
Write-Host "Installing $feature"
|
Write-Host "Installing $feature"
|
||||||
Enable-WindowsOptionalFeature -Online -FeatureName $feature -All -NoRestart
|
Enable-WindowsOptionalFeature -Online -FeatureName $feature -All -NoRestart
|
||||||
}
|
} catch {
|
||||||
Catch{
|
|
||||||
if ($psitem.Exception.Message -like "*requires elevation*") {
|
if ($psitem.Exception.Message -like "*requires elevation*") {
|
||||||
Write-Warning "Unable to Install $feature due to permissions. Are you running as admin?"
|
Write-Warning "Unable to Install $feature due to permissions. Are you running as admin?"
|
||||||
$sync.form.Dispatcher.Invoke([action]{ Set-WinUtilTaskbaritem -state "Error" })
|
$sync.form.Dispatcher.Invoke([action]{ Set-WinUtilTaskbaritem -state "Error" })
|
||||||
}
|
} else {
|
||||||
|
|
||||||
else{
|
|
||||||
|
|
||||||
Write-Warning "Unable to Install $feature due to unhandled exception"
|
Write-Warning "Unable to Install $feature due to unhandled exception"
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
Write-Warning $psitem.Exception.StackTrace
|
||||||
@ -35,19 +32,16 @@ function Invoke-WinUtilFeatureInstall {
|
|||||||
}
|
}
|
||||||
if($sync.configs.feature.$psitem.InvokeScript) {
|
if($sync.configs.feature.$psitem.InvokeScript) {
|
||||||
Foreach( $script in $sync.configs.feature.$psitem.InvokeScript ) {
|
Foreach( $script in $sync.configs.feature.$psitem.InvokeScript ) {
|
||||||
Try{
|
try {
|
||||||
$Scriptblock = [scriptblock]::Create($script)
|
$Scriptblock = [scriptblock]::Create($script)
|
||||||
|
|
||||||
Write-Host "Running Script for $psitem"
|
Write-Host "Running Script for $psitem"
|
||||||
Invoke-Command $scriptblock -ErrorAction stop
|
Invoke-Command $scriptblock -ErrorAction stop
|
||||||
}
|
} catch {
|
||||||
Catch{
|
|
||||||
if ($psitem.Exception.Message -like "*requires elevation*") {
|
if ($psitem.Exception.Message -like "*requires elevation*") {
|
||||||
Write-Warning "Unable to Install $feature due to permissions. Are you running as admin?"
|
Write-Warning "Unable to Install $feature due to permissions. Are you running as admin?"
|
||||||
$sync.form.Dispatcher.Invoke([action]{ Set-WinUtilTaskbaritem -state "Error" })
|
$sync.form.Dispatcher.Invoke([action]{ Set-WinUtilTaskbaritem -state "Error" })
|
||||||
}
|
} else {
|
||||||
|
|
||||||
else{
|
|
||||||
$sync.form.Dispatcher.Invoke([action]{ Set-WinUtilTaskbaritem -state "Error" })
|
$sync.form.Dispatcher.Invoke([action]{ Set-WinUtilTaskbaritem -state "Error" })
|
||||||
Write-Warning "Unable to Install $feature due to unhandled exception"
|
Write-Warning "Unable to Install $feature due to unhandled exception"
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
Write-Warning $psitem.Exception.StackTrace
|
||||||
|
@ -9,25 +9,21 @@ function Invoke-WinUtilHiddenFiles {
|
|||||||
|
|
||||||
#>
|
#>
|
||||||
Param($Enabled)
|
Param($Enabled)
|
||||||
Try{
|
try {
|
||||||
if ($Enabled -eq $false) {
|
if ($Enabled -eq $false) {
|
||||||
Write-Host "Enabling Hidden Files"
|
Write-Host "Enabling Hidden Files"
|
||||||
$value = 1
|
$value = 1
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
Write-Host "Disabling Hidden Files"
|
Write-Host "Disabling Hidden Files"
|
||||||
$value = 0
|
$value = 0
|
||||||
}
|
}
|
||||||
$Path = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
|
$Path = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
|
||||||
Set-ItemProperty -Path $Path -Name Hidden -Value $value
|
Set-ItemProperty -Path $Path -Name Hidden -Value $value
|
||||||
}
|
} catch [System.Security.SecurityException] {
|
||||||
Catch [System.Security.SecurityException] {
|
|
||||||
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
||||||
}
|
} catch [System.Management.Automation.ItemNotFoundException] {
|
||||||
Catch [System.Management.Automation.ItemNotFoundException] {
|
|
||||||
Write-Warning $psitem.Exception.ErrorRecord
|
Write-Warning $psitem.Exception.ErrorRecord
|
||||||
}
|
} catch {
|
||||||
Catch{
|
|
||||||
Write-Warning "Unable to set $Name due to unhandled exception"
|
Write-Warning "Unable to set $Name due to unhandled exception"
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
Write-Warning $psitem.Exception.StackTrace
|
||||||
}
|
}
|
||||||
|
@ -9,14 +9,13 @@ Function Invoke-WinUtilMouseAcceleration {
|
|||||||
|
|
||||||
#>
|
#>
|
||||||
Param($MouseAccelerationEnabled)
|
Param($MouseAccelerationEnabled)
|
||||||
Try{
|
try {
|
||||||
if ($MouseAccelerationEnabled -eq $false) {
|
if ($MouseAccelerationEnabled -eq $false) {
|
||||||
Write-Host "Enabling Mouse Acceleration"
|
Write-Host "Enabling Mouse Acceleration"
|
||||||
$MouseSpeed = 1
|
$MouseSpeed = 1
|
||||||
$MouseThreshold1 = 6
|
$MouseThreshold1 = 6
|
||||||
$MouseThreshold2 = 10
|
$MouseThreshold2 = 10
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
Write-Host "Disabling Mouse Acceleration"
|
Write-Host "Disabling Mouse Acceleration"
|
||||||
$MouseSpeed = 0
|
$MouseSpeed = 0
|
||||||
$MouseThreshold1 = 0
|
$MouseThreshold1 = 0
|
||||||
@ -28,14 +27,11 @@ Function Invoke-WinUtilMouseAcceleration {
|
|||||||
Set-ItemProperty -Path $Path -Name MouseSpeed -Value $MouseSpeed
|
Set-ItemProperty -Path $Path -Name MouseSpeed -Value $MouseSpeed
|
||||||
Set-ItemProperty -Path $Path -Name MouseThreshold1 -Value $MouseThreshold1
|
Set-ItemProperty -Path $Path -Name MouseThreshold1 -Value $MouseThreshold1
|
||||||
Set-ItemProperty -Path $Path -Name MouseThreshold2 -Value $MouseThreshold2
|
Set-ItemProperty -Path $Path -Name MouseThreshold2 -Value $MouseThreshold2
|
||||||
}
|
} catch [System.Security.SecurityException] {
|
||||||
Catch [System.Security.SecurityException] {
|
|
||||||
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
||||||
}
|
} catch [System.Management.Automation.ItemNotFoundException] {
|
||||||
Catch [System.Management.Automation.ItemNotFoundException] {
|
|
||||||
Write-Warning $psitem.Exception.ErrorRecord
|
Write-Warning $psitem.Exception.ErrorRecord
|
||||||
}
|
} catch {
|
||||||
Catch{
|
|
||||||
Write-Warning "Unable to set $Name due to unhandled exception"
|
Write-Warning "Unable to set $Name due to unhandled exception"
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
Write-Warning $psitem.Exception.StackTrace
|
||||||
}
|
}
|
||||||
|
@ -6,12 +6,11 @@ function Invoke-WinUtilNumLock {
|
|||||||
Indicates whether to enable or disable Numlock on startup
|
Indicates whether to enable or disable Numlock on startup
|
||||||
#>
|
#>
|
||||||
Param($Enabled)
|
Param($Enabled)
|
||||||
Try{
|
try {
|
||||||
if ($Enabled -eq $false) {
|
if ($Enabled -eq $false) {
|
||||||
Write-Host "Enabling Numlock on startup"
|
Write-Host "Enabling Numlock on startup"
|
||||||
$value = 2
|
$value = 2
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
Write-Host "Disabling Numlock on startup"
|
Write-Host "Disabling Numlock on startup"
|
||||||
$value = 0
|
$value = 0
|
||||||
}
|
}
|
||||||
@ -23,11 +22,9 @@ function Invoke-WinUtilNumLock {
|
|||||||
}
|
}
|
||||||
Catch [System.Security.SecurityException] {
|
Catch [System.Security.SecurityException] {
|
||||||
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
||||||
}
|
} catch [System.Management.Automation.ItemNotFoundException] {
|
||||||
Catch [System.Management.Automation.ItemNotFoundException] {
|
|
||||||
Write-Warning $psitem.Exception.ErrorRecord
|
Write-Warning $psitem.Exception.ErrorRecord
|
||||||
}
|
} catch {
|
||||||
Catch{
|
|
||||||
Write-Warning "Unable to set $Name due to unhandled exception"
|
Write-Warning "Unable to set $Name due to unhandled exception"
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
Write-Warning $psitem.Exception.StackTrace
|
||||||
}
|
}
|
||||||
|
@ -20,27 +20,22 @@ function Invoke-WinUtilScript {
|
|||||||
[scriptblock]$scriptblock
|
[scriptblock]$scriptblock
|
||||||
)
|
)
|
||||||
|
|
||||||
Try {
|
try {
|
||||||
Write-Host "Running Script for $name"
|
Write-Host "Running Script for $name"
|
||||||
Invoke-Command $scriptblock -ErrorAction Stop
|
Invoke-Command $scriptblock -ErrorAction Stop
|
||||||
}
|
} catch [System.Management.Automation.CommandNotFoundException] {
|
||||||
Catch [System.Management.Automation.CommandNotFoundException] {
|
|
||||||
Write-Warning "The specified command was not found."
|
Write-Warning "The specified command was not found."
|
||||||
Write-Warning $PSItem.Exception.message
|
Write-Warning $PSItem.Exception.message
|
||||||
}
|
} catch [System.Management.Automation.RuntimeException] {
|
||||||
Catch [System.Management.Automation.RuntimeException] {
|
|
||||||
Write-Warning "A runtime exception occurred."
|
Write-Warning "A runtime exception occurred."
|
||||||
Write-Warning $PSItem.Exception.message
|
Write-Warning $PSItem.Exception.message
|
||||||
}
|
} catch [System.Security.SecurityException] {
|
||||||
Catch [System.Security.SecurityException] {
|
|
||||||
Write-Warning "A security exception occurred."
|
Write-Warning "A security exception occurred."
|
||||||
Write-Warning $PSItem.Exception.message
|
Write-Warning $PSItem.Exception.message
|
||||||
}
|
} catch [System.UnauthorizedAccessException] {
|
||||||
Catch [System.UnauthorizedAccessException] {
|
|
||||||
Write-Warning "Access denied. You do not have permission to perform this operation."
|
Write-Warning "Access denied. You do not have permission to perform this operation."
|
||||||
Write-Warning $PSItem.Exception.message
|
Write-Warning $PSItem.Exception.message
|
||||||
}
|
} catch {
|
||||||
Catch {
|
|
||||||
# Generic catch block to handle any other type of exception
|
# Generic catch block to handle any other type of exception
|
||||||
Write-Warning "Unable to run script for $name due to unhandled exception"
|
Write-Warning "Unable to run script for $name due to unhandled exception"
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
Write-Warning $psitem.Exception.StackTrace
|
||||||
|
@ -6,25 +6,21 @@ function Invoke-WinUtilShowExt {
|
|||||||
Indicates whether to enable or disable Show file extentions
|
Indicates whether to enable or disable Show file extentions
|
||||||
#>
|
#>
|
||||||
Param($Enabled)
|
Param($Enabled)
|
||||||
Try{
|
try {
|
||||||
if ($Enabled -eq $false) {
|
if ($Enabled -eq $false) {
|
||||||
Write-Host "Showing file extentions"
|
Write-Host "Showing file extentions"
|
||||||
$value = 0
|
$value = 0
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
Write-Host "hiding file extensions"
|
Write-Host "hiding file extensions"
|
||||||
$value = 1
|
$value = 1
|
||||||
}
|
}
|
||||||
$Path = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
|
$Path = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
|
||||||
Set-ItemProperty -Path $Path -Name HideFileExt -Value $value
|
Set-ItemProperty -Path $Path -Name HideFileExt -Value $value
|
||||||
}
|
} catch [System.Security.SecurityException] {
|
||||||
Catch [System.Security.SecurityException] {
|
|
||||||
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
||||||
}
|
} catch [System.Management.Automation.ItemNotFoundException] {
|
||||||
Catch [System.Management.Automation.ItemNotFoundException] {
|
|
||||||
Write-Warning $psitem.Exception.ErrorRecord
|
Write-Warning $psitem.Exception.ErrorRecord
|
||||||
}
|
} catch {
|
||||||
Catch{
|
|
||||||
Write-Warning "Unable to set $Name due to unhandled exception"
|
Write-Warning "Unable to set $Name due to unhandled exception"
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
Write-Warning $psitem.Exception.StackTrace
|
||||||
}
|
}
|
||||||
|
@ -6,12 +6,11 @@ function Invoke-WinUtilSnapFlyout {
|
|||||||
Indicates whether to enable or disable Snap Assist Flyout on startup
|
Indicates whether to enable or disable Snap Assist Flyout on startup
|
||||||
#>
|
#>
|
||||||
Param($Enabled)
|
Param($Enabled)
|
||||||
Try{
|
try {
|
||||||
if ($Enabled -eq $false) {
|
if ($Enabled -eq $false) {
|
||||||
Write-Host "Enabling Snap Assist Flyout On startup"
|
Write-Host "Enabling Snap Assist Flyout On startup"
|
||||||
$value = 1
|
$value = 1
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
Write-Host "Disabling Snap Assist Flyout On startup"
|
Write-Host "Disabling Snap Assist Flyout On startup"
|
||||||
$value = 0
|
$value = 0
|
||||||
}
|
}
|
||||||
@ -20,14 +19,11 @@ function Invoke-WinUtilSnapFlyout {
|
|||||||
taskkill.exe /F /IM "explorer.exe"
|
taskkill.exe /F /IM "explorer.exe"
|
||||||
Set-ItemProperty -Path $Path -Name EnableSnapAssistFlyout -Value $value
|
Set-ItemProperty -Path $Path -Name EnableSnapAssistFlyout -Value $value
|
||||||
Start-Process "explorer.exe"
|
Start-Process "explorer.exe"
|
||||||
}
|
} catch [System.Security.SecurityException] {
|
||||||
Catch [System.Security.SecurityException] {
|
|
||||||
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
||||||
}
|
} catch [System.Management.Automation.ItemNotFoundException] {
|
||||||
Catch [System.Management.Automation.ItemNotFoundException] {
|
|
||||||
Write-Warning $psitem.Exception.ErrorRecord
|
Write-Warning $psitem.Exception.ErrorRecord
|
||||||
}
|
} catch {
|
||||||
Catch{
|
|
||||||
Write-Warning "Unable to set $Name due to unhandled exception"
|
Write-Warning "Unable to set $Name due to unhandled exception"
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
Write-Warning $psitem.Exception.StackTrace
|
||||||
}
|
}
|
||||||
|
@ -6,12 +6,11 @@ function Invoke-WinUtilSnapSuggestion {
|
|||||||
Indicates whether to enable or disable Snap Assist Suggestions on startup
|
Indicates whether to enable or disable Snap Assist Suggestions on startup
|
||||||
#>
|
#>
|
||||||
Param($Enabled)
|
Param($Enabled)
|
||||||
Try{
|
try {
|
||||||
if ($Enabled -eq $false) {
|
if ($Enabled -eq $false) {
|
||||||
Write-Host "Enabling Snap Assist Suggestion On startup"
|
Write-Host "Enabling Snap Assist Suggestion On startup"
|
||||||
$value = 1
|
$value = 1
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
Write-Host "Disabling Snap Assist Suggestion On startup"
|
Write-Host "Disabling Snap Assist Suggestion On startup"
|
||||||
$value = 0
|
$value = 0
|
||||||
}
|
}
|
||||||
@ -20,14 +19,11 @@ function Invoke-WinUtilSnapSuggestion {
|
|||||||
taskkill.exe /F /IM "explorer.exe"
|
taskkill.exe /F /IM "explorer.exe"
|
||||||
Set-ItemProperty -Path $Path -Name SnapAssist -Value $value
|
Set-ItemProperty -Path $Path -Name SnapAssist -Value $value
|
||||||
Start-Process "explorer.exe"
|
Start-Process "explorer.exe"
|
||||||
}
|
} catch [System.Security.SecurityException] {
|
||||||
Catch [System.Security.SecurityException] {
|
|
||||||
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
||||||
}
|
} catch [System.Management.Automation.ItemNotFoundException] {
|
||||||
Catch [System.Management.Automation.ItemNotFoundException] {
|
|
||||||
Write-Warning $psitem.Exception.ErrorRecord
|
Write-Warning $psitem.Exception.ErrorRecord
|
||||||
}
|
} catch {
|
||||||
Catch{
|
|
||||||
Write-Warning "Unable to set $Name due to unhandled exception"
|
Write-Warning "Unable to set $Name due to unhandled exception"
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
Write-Warning $psitem.Exception.StackTrace
|
||||||
}
|
}
|
||||||
|
@ -6,25 +6,21 @@ function Invoke-WinUtilSnapWindow {
|
|||||||
Indicates whether to enable or disable Snapping Windows on startup
|
Indicates whether to enable or disable Snapping Windows on startup
|
||||||
#>
|
#>
|
||||||
Param($Enabled)
|
Param($Enabled)
|
||||||
Try{
|
try {
|
||||||
if ($Enabled -eq $false) {
|
if ($Enabled -eq $false) {
|
||||||
Write-Host "Enabling Snap Windows On startup | Relogin Required"
|
Write-Host "Enabling Snap Windows On startup | Relogin Required"
|
||||||
$value = 1
|
$value = 1
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
Write-Host "Disabling Snap Windows On startup | Relogin Required"
|
Write-Host "Disabling Snap Windows On startup | Relogin Required"
|
||||||
$value = 0
|
$value = 0
|
||||||
}
|
}
|
||||||
$Path = "HKCU:\Control Panel\Desktop"
|
$Path = "HKCU:\Control Panel\Desktop"
|
||||||
Set-ItemProperty -Path $Path -Name WindowArrangementActive -Value $value
|
Set-ItemProperty -Path $Path -Name WindowArrangementActive -Value $value
|
||||||
}
|
} catch [System.Security.SecurityException] {
|
||||||
Catch [System.Security.SecurityException] {
|
|
||||||
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
||||||
}
|
} catch [System.Management.Automation.ItemNotFoundException] {
|
||||||
Catch [System.Management.Automation.ItemNotFoundException] {
|
|
||||||
Write-Warning $psitem.Exception.ErrorRecord
|
Write-Warning $psitem.Exception.ErrorRecord
|
||||||
}
|
} catch {
|
||||||
Catch{
|
|
||||||
Write-Warning "Unable to set $Name due to unhandled exception"
|
Write-Warning "Unable to set $Name due to unhandled exception"
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
Write-Warning $psitem.Exception.StackTrace
|
||||||
}
|
}
|
||||||
|
@ -37,8 +37,7 @@ Function Invoke-WinUtilSponsors {
|
|||||||
|
|
||||||
# Return the sponsors
|
# Return the sponsors
|
||||||
return $sponsors
|
return $sponsors
|
||||||
}
|
} catch {
|
||||||
catch {
|
|
||||||
Write-Error "An error occurred while fetching or processing the sponsors: $_"
|
Write-Error "An error occurred while fetching or processing the sponsors: $_"
|
||||||
return $null
|
return $null
|
||||||
}
|
}
|
||||||
|
@ -6,25 +6,21 @@ Function Invoke-WinUtilStickyKeys {
|
|||||||
Indicates whether to enable or disable Sticky Keys on startup
|
Indicates whether to enable or disable Sticky Keys on startup
|
||||||
#>
|
#>
|
||||||
Param($Enabled)
|
Param($Enabled)
|
||||||
Try {
|
try {
|
||||||
if ($Enabled -eq $false) {
|
if ($Enabled -eq $false) {
|
||||||
Write-Host "Enabling Sticky Keys On startup"
|
Write-Host "Enabling Sticky Keys On startup"
|
||||||
$value = 510
|
$value = 510
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
Write-Host "Disabling Sticky Keys On startup"
|
Write-Host "Disabling Sticky Keys On startup"
|
||||||
$value = 58
|
$value = 58
|
||||||
}
|
}
|
||||||
$Path = "HKCU:\Control Panel\Accessibility\StickyKeys"
|
$Path = "HKCU:\Control Panel\Accessibility\StickyKeys"
|
||||||
Set-ItemProperty -Path $Path -Name Flags -Value $value
|
Set-ItemProperty -Path $Path -Name Flags -Value $value
|
||||||
}
|
} catch [System.Security.SecurityException] {
|
||||||
Catch [System.Security.SecurityException] {
|
|
||||||
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
||||||
}
|
} catch [System.Management.Automation.ItemNotFoundException] {
|
||||||
Catch [System.Management.Automation.ItemNotFoundException] {
|
|
||||||
Write-Warning $psitem.Exception.ErrorRecord
|
Write-Warning $psitem.Exception.ErrorRecord
|
||||||
}
|
} catch {
|
||||||
Catch{
|
|
||||||
Write-Warning "Unable to set $Name due to unhandled exception"
|
Write-Warning "Unable to set $Name due to unhandled exception"
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
Write-Warning $psitem.Exception.StackTrace
|
||||||
}
|
}
|
||||||
|
@ -9,25 +9,21 @@ function Invoke-WinUtilTaskView {
|
|||||||
|
|
||||||
#>
|
#>
|
||||||
Param($Enabled)
|
Param($Enabled)
|
||||||
Try{
|
try {
|
||||||
if ($Enabled -eq $false) {
|
if ($Enabled -eq $false) {
|
||||||
Write-Host "Enabling Task View"
|
Write-Host "Enabling Task View"
|
||||||
$value = 1
|
$value = 1
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
Write-Host "Disabling Task View"
|
Write-Host "Disabling Task View"
|
||||||
$value = 0
|
$value = 0
|
||||||
}
|
}
|
||||||
$Path = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
|
$Path = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
|
||||||
Set-ItemProperty -Path $Path -Name ShowTaskViewButton -Value $value
|
Set-ItemProperty -Path $Path -Name ShowTaskViewButton -Value $value
|
||||||
}
|
} catch [System.Security.SecurityException] {
|
||||||
Catch [System.Security.SecurityException] {
|
|
||||||
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
||||||
}
|
} catch [System.Management.Automation.ItemNotFoundException] {
|
||||||
Catch [System.Management.Automation.ItemNotFoundException] {
|
|
||||||
Write-Warning $psitem.Exception.ErrorRecord
|
Write-Warning $psitem.Exception.ErrorRecord
|
||||||
}
|
} catch {
|
||||||
Catch{
|
|
||||||
Write-Warning "Unable to set $Name due to unhandled exception"
|
Write-Warning "Unable to set $Name due to unhandled exception"
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
Write-Warning $psitem.Exception.StackTrace
|
||||||
}
|
}
|
||||||
|
@ -9,25 +9,21 @@ function Invoke-WinUtilTaskbarAlignment {
|
|||||||
|
|
||||||
#>
|
#>
|
||||||
Param($Enabled)
|
Param($Enabled)
|
||||||
Try{
|
try {
|
||||||
if ($Enabled -eq $false) {
|
if ($Enabled -eq $false) {
|
||||||
Write-Host "Making Taskbar Alignment to the Center"
|
Write-Host "Making Taskbar Alignment to the Center"
|
||||||
$value = 1
|
$value = 1
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
Write-Host "Making Taskbar Alignment to the Left"
|
Write-Host "Making Taskbar Alignment to the Left"
|
||||||
$value = 0
|
$value = 0
|
||||||
}
|
}
|
||||||
$Path = "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
|
$Path = "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
|
||||||
Set-ItemProperty -Path $Path -Name "TaskbarAl" -Value $value
|
Set-ItemProperty -Path $Path -Name "TaskbarAl" -Value $value
|
||||||
}
|
} catch [System.Security.SecurityException] {
|
||||||
Catch [System.Security.SecurityException] {
|
|
||||||
Write-Warning "Unable to set $Path\$Name to $value due to a Security Exception"
|
Write-Warning "Unable to set $Path\$Name to $value due to a Security Exception"
|
||||||
}
|
} catch [System.Management.Automation.ItemNotFoundException] {
|
||||||
Catch [System.Management.Automation.ItemNotFoundException] {
|
|
||||||
Write-Warning $psitem.Exception.ErrorRecord
|
Write-Warning $psitem.Exception.ErrorRecord
|
||||||
}
|
} catch {
|
||||||
Catch{
|
|
||||||
Write-Warning "Unable to set $Name due to unhandled exception"
|
Write-Warning "Unable to set $Name due to unhandled exception"
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
Write-Warning $psitem.Exception.StackTrace
|
||||||
}
|
}
|
||||||
|
@ -9,25 +9,21 @@ function Invoke-WinUtilTaskbarSearch {
|
|||||||
|
|
||||||
#>
|
#>
|
||||||
Param($Enabled)
|
Param($Enabled)
|
||||||
Try{
|
try {
|
||||||
if ($Enabled -eq $false) {
|
if ($Enabled -eq $false) {
|
||||||
Write-Host "Enabling Search Button"
|
Write-Host "Enabling Search Button"
|
||||||
$value = 1
|
$value = 1
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
Write-Host "Disabling Search Button"
|
Write-Host "Disabling Search Button"
|
||||||
$value = 0
|
$value = 0
|
||||||
}
|
}
|
||||||
$Path = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search\"
|
$Path = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Search\"
|
||||||
Set-ItemProperty -Path $Path -Name SearchboxTaskbarMode -Value $value
|
Set-ItemProperty -Path $Path -Name SearchboxTaskbarMode -Value $value
|
||||||
}
|
} catch [System.Security.SecurityException] {
|
||||||
Catch [System.Security.SecurityException] {
|
|
||||||
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
||||||
}
|
} catch [System.Management.Automation.ItemNotFoundException] {
|
||||||
Catch [System.Management.Automation.ItemNotFoundException] {
|
|
||||||
Write-Warning $psitem.Exception.ErrorRecord
|
Write-Warning $psitem.Exception.ErrorRecord
|
||||||
}
|
} catch {
|
||||||
Catch{
|
|
||||||
Write-Warning "Unable to set $Name due to unhandled exception"
|
Write-Warning "Unable to set $Name due to unhandled exception"
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
Write-Warning $psitem.Exception.StackTrace
|
||||||
}
|
}
|
||||||
|
@ -9,25 +9,21 @@ function Invoke-WinUtilTaskbarWidgets {
|
|||||||
|
|
||||||
#>
|
#>
|
||||||
Param($Enabled)
|
Param($Enabled)
|
||||||
Try{
|
try {
|
||||||
if ($Enabled -eq $false) {
|
if ($Enabled -eq $false) {
|
||||||
Write-Host "Enabling Taskbar Widgets"
|
Write-Host "Enabling Taskbar Widgets"
|
||||||
$value = 1
|
$value = 1
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
Write-Host "Disabling Taskbar Widgets"
|
Write-Host "Disabling Taskbar Widgets"
|
||||||
$value = 0
|
$value = 0
|
||||||
}
|
}
|
||||||
$Path = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
|
$Path = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
|
||||||
Set-ItemProperty -Path $Path -Name TaskbarDa -Value $value
|
Set-ItemProperty -Path $Path -Name TaskbarDa -Value $value
|
||||||
}
|
} catch [System.Security.SecurityException] {
|
||||||
Catch [System.Security.SecurityException] {
|
|
||||||
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
||||||
}
|
} catch [System.Management.Automation.ItemNotFoundException] {
|
||||||
Catch [System.Management.Automation.ItemNotFoundException] {
|
|
||||||
Write-Warning $psitem.Exception.ErrorRecord
|
Write-Warning $psitem.Exception.ErrorRecord
|
||||||
}
|
} catch {
|
||||||
Catch{
|
|
||||||
Write-Warning "Unable to set $Name due to unhandled exception"
|
Write-Warning "Unable to set $Name due to unhandled exception"
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
Write-Warning $psitem.Exception.StackTrace
|
||||||
}
|
}
|
||||||
|
@ -30,8 +30,7 @@ function Invoke-WinUtilTweaks {
|
|||||||
ScriptType = "UndoScript"
|
ScriptType = "UndoScript"
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
} else {
|
||||||
Else{
|
|
||||||
$Values = @{
|
$Values = @{
|
||||||
Registry = "Value"
|
Registry = "Value"
|
||||||
ScheduledTask = "State"
|
ScheduledTask = "State"
|
||||||
@ -60,8 +59,7 @@ function Invoke-WinUtilTweaks {
|
|||||||
Write-Debug "Service $($service.Name) was changed in the past to $($service.StartType.ToString()) from it's original type of $($psitem.$($values.OriginalService)), will not change it to $($psitem.$($values.service))"
|
Write-Debug "Service $($service.Name) was changed in the past to $($service.StartType.ToString()) from it's original type of $($psitem.$($values.OriginalService)), will not change it to $($psitem.$($values.service))"
|
||||||
$changeservice = $false
|
$changeservice = $false
|
||||||
}
|
}
|
||||||
}
|
} catch [System.ServiceProcess.ServiceNotFoundException] {
|
||||||
catch [System.ServiceProcess.ServiceNotFoundException] {
|
|
||||||
Write-Warning "Service $($psitem.Name) was not found"
|
Write-Warning "Service $($psitem.Name) was not found"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -6,25 +6,21 @@ function Invoke-WinUtilVerboseLogon {
|
|||||||
Indicates whether to enable or disable VerboseLogon messages
|
Indicates whether to enable or disable VerboseLogon messages
|
||||||
#>
|
#>
|
||||||
Param($Enabled)
|
Param($Enabled)
|
||||||
Try{
|
try {
|
||||||
if ($Enabled -eq $false) {
|
if ($Enabled -eq $false) {
|
||||||
Write-Host "Enabling Verbose Logon Messages"
|
Write-Host "Enabling Verbose Logon Messages"
|
||||||
$value = 1
|
$value = 1
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
Write-Host "Disabling Verbose Logon Messages"
|
Write-Host "Disabling Verbose Logon Messages"
|
||||||
$value = 0
|
$value = 0
|
||||||
}
|
}
|
||||||
$Path = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System"
|
$Path = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System"
|
||||||
Set-ItemProperty -Path $Path -Name VerboseStatus -Value $value
|
Set-ItemProperty -Path $Path -Name VerboseStatus -Value $value
|
||||||
}
|
} catch [System.Security.SecurityException] {
|
||||||
Catch [System.Security.SecurityException] {
|
|
||||||
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
||||||
}
|
} catch [System.Management.Automation.ItemNotFoundException] {
|
||||||
Catch [System.Management.Automation.ItemNotFoundException] {
|
|
||||||
Write-Warning $psitem.Exception.ErrorRecord
|
Write-Warning $psitem.Exception.ErrorRecord
|
||||||
}
|
} catch {
|
||||||
Catch{
|
|
||||||
Write-Warning "Unable to set $Name due to unhandled exception"
|
Write-Warning "Unable to set $Name due to unhandled exception"
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
Write-Warning $psitem.Exception.StackTrace
|
||||||
}
|
}
|
||||||
|
@ -15,8 +15,7 @@ Function Invoke-WinUtilWingetProgram {
|
|||||||
#>
|
#>
|
||||||
|
|
||||||
param(
|
param(
|
||||||
[Parameter(Mandatory, Position=0)]
|
[Parameter(Mandatory, Position=0)]$Programs,
|
||||||
$Programs,
|
|
||||||
|
|
||||||
[Parameter(Mandatory, Position=1)]
|
[Parameter(Mandatory, Position=1)]
|
||||||
[ValidateSet("Install", "Uninstall")]
|
[ValidateSet("Install", "Uninstall")]
|
||||||
@ -49,8 +48,7 @@ Function Invoke-WinUtilWingetProgram {
|
|||||||
$commonArguments = "--id $wingetId --silent"
|
$commonArguments = "--id $wingetId --silent"
|
||||||
$arguments = if ($Action -eq "Install") {
|
$arguments = if ($Action -eq "Install") {
|
||||||
"install $commonArguments --accept-source-agreements --accept-package-agreements $(if ($scope) {" --scope $scope"})"
|
"install $commonArguments --accept-source-agreements --accept-package-agreements $(if ($scope) {" --scope $scope"})"
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
"uninstall $commonArguments"
|
"uninstall $commonArguments"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -15,21 +15,18 @@ function Remove-WinUtilAPPX {
|
|||||||
$Name
|
$Name
|
||||||
)
|
)
|
||||||
|
|
||||||
Try {
|
try {
|
||||||
Write-Host "Removing $Name"
|
Write-Host "Removing $Name"
|
||||||
Get-AppxPackage "*$Name*" | Remove-AppxPackage -ErrorAction SilentlyContinue
|
Get-AppxPackage "*$Name*" | Remove-AppxPackage -ErrorAction SilentlyContinue
|
||||||
Get-AppxProvisionedPackage -Online | Where-Object DisplayName -like "*$Name*" | Remove-AppxProvisionedPackage -Online -ErrorAction SilentlyContinue
|
Get-AppxProvisionedPackage -Online | Where-Object DisplayName -like "*$Name*" | Remove-AppxProvisionedPackage -Online -ErrorAction SilentlyContinue
|
||||||
}
|
} catch [System.Exception] {
|
||||||
Catch [System.Exception] {
|
|
||||||
if ($psitem.Exception.Message -like "*The requested operation requires elevation*") {
|
if ($psitem.Exception.Message -like "*The requested operation requires elevation*") {
|
||||||
Write-Warning "Unable to uninstall $name due to a Security Exception"
|
Write-Warning "Unable to uninstall $name due to a Security Exception"
|
||||||
|
} else {
|
||||||
|
Write-Warning "Unable to uninstall $name due to unhandled exception"
|
||||||
|
Write-Warning $psitem.Exception.StackTrace
|
||||||
}
|
}
|
||||||
else {
|
} catch {
|
||||||
Write-Warning "Unable to uninstall $name due to unhandled exception"
|
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Catch{
|
|
||||||
Write-Warning "Unable to uninstall $name due to unhandled exception"
|
Write-Warning "Unable to uninstall $name due to unhandled exception"
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
Write-Warning $psitem.Exception.StackTrace
|
||||||
}
|
}
|
||||||
|
@ -13,7 +13,7 @@ function Set-WinUtilDNS {
|
|||||||
#>
|
#>
|
||||||
param($DNSProvider)
|
param($DNSProvider)
|
||||||
if($DNSProvider -eq "Default") {return}
|
if($DNSProvider -eq "Default") {return}
|
||||||
Try{
|
try {
|
||||||
$Adapters = Get-NetAdapter | Where-Object {$_.Status -eq "Up"}
|
$Adapters = Get-NetAdapter | Where-Object {$_.Status -eq "Up"}
|
||||||
Write-Host "Ensuring DNS is set to $DNSProvider on the following interfaces"
|
Write-Host "Ensuring DNS is set to $DNSProvider on the following interfaces"
|
||||||
Write-Host $($Adapters | Out-String)
|
Write-Host $($Adapters | Out-String)
|
||||||
@ -21,14 +21,12 @@ function Set-WinUtilDNS {
|
|||||||
Foreach ($Adapter in $Adapters) {
|
Foreach ($Adapter in $Adapters) {
|
||||||
if($DNSProvider -eq "DHCP") {
|
if($DNSProvider -eq "DHCP") {
|
||||||
Set-DnsClientServerAddress -InterfaceIndex $Adapter.ifIndex -ResetServerAddresses
|
Set-DnsClientServerAddress -InterfaceIndex $Adapter.ifIndex -ResetServerAddresses
|
||||||
}
|
} else {
|
||||||
Else{
|
|
||||||
Set-DnsClientServerAddress -InterfaceIndex $Adapter.ifIndex -ServerAddresses ("$($sync.configs.dns.$DNSProvider.Primary)", "$($sync.configs.dns.$DNSProvider.Secondary)")
|
Set-DnsClientServerAddress -InterfaceIndex $Adapter.ifIndex -ServerAddresses ("$($sync.configs.dns.$DNSProvider.Primary)", "$($sync.configs.dns.$DNSProvider.Secondary)")
|
||||||
Set-DnsClientServerAddress -InterfaceIndex $Adapter.ifIndex -ServerAddresses ("$($sync.configs.dns.$DNSProvider.Primary6)", "$($sync.configs.dns.$DNSProvider.Secondary6)")
|
Set-DnsClientServerAddress -InterfaceIndex $Adapter.ifIndex -ServerAddresses ("$($sync.configs.dns.$DNSProvider.Primary6)", "$($sync.configs.dns.$DNSProvider.Secondary6)")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
} catch {
|
||||||
Catch{
|
|
||||||
Write-Warning "Unable to set DNS Provider due to an unhandled exception"
|
Write-Warning "Unable to set DNS Provider due to an unhandled exception"
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
Write-Warning $psitem.Exception.StackTrace
|
||||||
}
|
}
|
||||||
|
@ -19,8 +19,7 @@ function Set-WinUtilProgressbar{
|
|||||||
if ($hide) {
|
if ($hide) {
|
||||||
$sync.form.Dispatcher.Invoke([action]{$sync.ProgressBarLabel.Visibility = "Collapsed"})
|
$sync.form.Dispatcher.Invoke([action]{$sync.ProgressBarLabel.Visibility = "Collapsed"})
|
||||||
$sync.form.Dispatcher.Invoke([action]{$sync.ProgressBar.Visibility = "Collapsed"})
|
$sync.form.Dispatcher.Invoke([action]{$sync.ProgressBar.Visibility = "Collapsed"})
|
||||||
}
|
} else {
|
||||||
else{
|
|
||||||
$sync.form.Dispatcher.Invoke([action]{$sync.ProgressBarLabel.Visibility = "Visible"})
|
$sync.form.Dispatcher.Invoke([action]{$sync.ProgressBarLabel.Visibility = "Visible"})
|
||||||
$sync.form.Dispatcher.Invoke([action]{$sync.ProgressBar.Visibility = "Visible"})
|
$sync.form.Dispatcher.Invoke([action]{$sync.ProgressBar.Visibility = "Visible"})
|
||||||
}
|
}
|
||||||
|
@ -27,7 +27,7 @@ function Set-WinUtilRegistry {
|
|||||||
$Value
|
$Value
|
||||||
)
|
)
|
||||||
|
|
||||||
Try{
|
try {
|
||||||
if(!(Test-Path 'HKU:\')) {New-PSDrive -PSProvider Registry -Name HKU -Root HKEY_USERS}
|
if(!(Test-Path 'HKU:\')) {New-PSDrive -PSProvider Registry -Name HKU -Root HKEY_USERS}
|
||||||
|
|
||||||
If (!(Test-Path $Path)) {
|
If (!(Test-Path $Path)) {
|
||||||
@ -37,14 +37,11 @@ function Set-WinUtilRegistry {
|
|||||||
|
|
||||||
Write-Host "Set $Path\$Name to $Value"
|
Write-Host "Set $Path\$Name to $Value"
|
||||||
Set-ItemProperty -Path $Path -Name $Name -Type $Type -Value $Value -Force -ErrorAction Stop | Out-Null
|
Set-ItemProperty -Path $Path -Name $Name -Type $Type -Value $Value -Force -ErrorAction Stop | Out-Null
|
||||||
}
|
} catch [System.Security.SecurityException] {
|
||||||
Catch [System.Security.SecurityException] {
|
|
||||||
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
||||||
}
|
} catch [System.Management.Automation.ItemNotFoundException] {
|
||||||
Catch [System.Management.Automation.ItemNotFoundException] {
|
|
||||||
Write-Warning $psitem.Exception.ErrorRecord
|
Write-Warning $psitem.Exception.ErrorRecord
|
||||||
}
|
} catch {
|
||||||
Catch{
|
|
||||||
Write-Warning "Unable to set $Name due to unhandled exception"
|
Write-Warning "Unable to set $Name due to unhandled exception"
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
Write-Warning $psitem.Exception.StackTrace
|
||||||
}
|
}
|
||||||
|
@ -19,7 +19,7 @@ function Set-WinUtilScheduledTask {
|
|||||||
$State
|
$State
|
||||||
)
|
)
|
||||||
|
|
||||||
Try{
|
try {
|
||||||
if($State -eq "Disabled") {
|
if($State -eq "Disabled") {
|
||||||
Write-Host "Disabling Scheduled Task $Name"
|
Write-Host "Disabling Scheduled Task $Name"
|
||||||
Disable-ScheduledTask -TaskName $Name -ErrorAction Stop
|
Disable-ScheduledTask -TaskName $Name -ErrorAction Stop
|
||||||
@ -28,17 +28,14 @@ function Set-WinUtilScheduledTask {
|
|||||||
Write-Host "Enabling Scheduled Task $Name"
|
Write-Host "Enabling Scheduled Task $Name"
|
||||||
Enable-ScheduledTask -TaskName $Name -ErrorAction Stop
|
Enable-ScheduledTask -TaskName $Name -ErrorAction Stop
|
||||||
}
|
}
|
||||||
}
|
} catch [System.Exception] {
|
||||||
Catch [System.Exception]{
|
|
||||||
if($psitem.Exception.Message -like "*The system cannot find the file specified*") {
|
if($psitem.Exception.Message -like "*The system cannot find the file specified*") {
|
||||||
Write-Warning "Scheduled Task $name was not Found"
|
Write-Warning "Scheduled Task $name was not Found"
|
||||||
}
|
} else {
|
||||||
Else{
|
|
||||||
Write-Warning "Unable to set $Name due to unhandled exception"
|
Write-Warning "Unable to set $Name due to unhandled exception"
|
||||||
Write-Warning $psitem.Exception.Message
|
Write-Warning $psitem.Exception.Message
|
||||||
}
|
}
|
||||||
}
|
} catch {
|
||||||
Catch{
|
|
||||||
Write-Warning "Unable to run script for $name due to unhandled exception"
|
Write-Warning "Unable to run script for $name due to unhandled exception"
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
Write-Warning $psitem.Exception.StackTrace
|
||||||
}
|
}
|
||||||
|
@ -26,11 +26,9 @@ Function Set-WinUtilService {
|
|||||||
|
|
||||||
# Service exists, proceed with changing properties
|
# Service exists, proceed with changing properties
|
||||||
$service | Set-Service -StartupType $StartupType -ErrorAction Stop
|
$service | Set-Service -StartupType $StartupType -ErrorAction Stop
|
||||||
}
|
} catch [System.ServiceProcess.ServiceNotFoundException] {
|
||||||
catch [System.ServiceProcess.ServiceNotFoundException] {
|
|
||||||
Write-Warning "Service $Name was not found"
|
Write-Warning "Service $Name was not found"
|
||||||
}
|
} catch {
|
||||||
catch {
|
|
||||||
Write-Warning "Unable to set $Name due to unhandled exception"
|
Write-Warning "Unable to set $Name due to unhandled exception"
|
||||||
Write-Warning $_.Exception.Message
|
Write-Warning $_.Exception.Message
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
function Set-WinUtilUITheme {
|
function Set-WinUtilUITheme {
|
||||||
<#
|
<#
|
||||||
|
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Sets the theme of the XAML file
|
Sets the theme of the XAML file
|
||||||
|
|
||||||
@ -12,13 +11,13 @@ function Set-WinUtilUITheme {
|
|||||||
|
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
Set-WinUtilUITheme -inputXAML $inputXAML
|
Set-WinUtilUITheme -inputXAML $inputXAML
|
||||||
|
|
||||||
#>
|
#>
|
||||||
|
|
||||||
param
|
param
|
||||||
(
|
(
|
||||||
[Parameter(Mandatory=$true, Position=0)]
|
[Parameter(Mandatory, position=0)]
|
||||||
[string]$inputXML,
|
[string]$inputXML,
|
||||||
[Parameter(Mandatory=$false, Position=1)]
|
[Parameter(position=1)]
|
||||||
[string]$themeName = 'matrix'
|
[string]$themeName = 'matrix'
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -38,13 +37,11 @@ function Set-WinUtilUITheme {
|
|||||||
# Replace the key with the value in the input XML
|
# Replace the key with the value in the input XML
|
||||||
$inputXML = $inputXML.Replace($formattedKey, $value)
|
$inputXML = $inputXML.Replace($formattedKey, $value)
|
||||||
}
|
}
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
Write-Host "Theme '$themeName' not found."
|
Write-Host "Theme '$themeName' not found."
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
} catch {
|
||||||
catch {
|
|
||||||
Write-Warning "Unable to apply theme"
|
Write-Warning "Unable to apply theme"
|
||||||
Write-Warning $psitem.Exception.StackTrace
|
Write-Warning $psitem.Exception.StackTrace
|
||||||
}
|
}
|
||||||
|
@ -65,8 +65,7 @@ function Test-WinUtilPackageManager {
|
|||||||
if (!$wingetOutdated) {
|
if (!$wingetOutdated) {
|
||||||
Write-Host " - Winget is Up to Date" -ForegroundColor Green
|
Write-Host " - Winget is Up to Date" -ForegroundColor Green
|
||||||
$status = "installed"
|
$status = "installed"
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
Write-Host " - Winget is Out of Date" -ForegroundColor Red
|
Write-Host " - Winget is Out of Date" -ForegroundColor Red
|
||||||
$status = "outdated"
|
$status = "outdated"
|
||||||
}
|
}
|
||||||
|
@ -18,8 +18,7 @@ function Invoke-ScratchDialog {
|
|||||||
$filePath = $Dialog.SelectedPath
|
$filePath = $Dialog.SelectedPath
|
||||||
Write-Host "No ISO is chosen+ $filePath"
|
Write-Host "No ISO is chosen+ $filePath"
|
||||||
|
|
||||||
if ([string]::IsNullOrEmpty($filePath))
|
if ([string]::IsNullOrEmpty($filePath)) {
|
||||||
{
|
|
||||||
Write-Host "No Folder had chosen"
|
Write-Host "No Folder had chosen"
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -27,13 +27,11 @@ function Invoke-WPFGetIso {
|
|||||||
$oscdImgFound = [bool] (Get-Command -ErrorAction Ignore -Type Application oscdimg.exe) -or (Test-Path $oscdimgPath -PathType Leaf)
|
$oscdImgFound = [bool] (Get-Command -ErrorAction Ignore -Type Application oscdimg.exe) -or (Test-Path $oscdimgPath -PathType Leaf)
|
||||||
Write-Host "oscdimg.exe on system: $oscdImgFound"
|
Write-Host "oscdimg.exe on system: $oscdImgFound"
|
||||||
|
|
||||||
if (!$oscdImgFound)
|
if (!$oscdImgFound) {
|
||||||
{
|
|
||||||
$downloadFromGitHub = $sync.WPFMicrowinDownloadFromGitHub.IsChecked
|
$downloadFromGitHub = $sync.WPFMicrowinDownloadFromGitHub.IsChecked
|
||||||
$sync.BusyMessage.Visibility="Hidden"
|
$sync.BusyMessage.Visibility="Hidden"
|
||||||
|
|
||||||
if (!$downloadFromGitHub)
|
if (!$downloadFromGitHub) {
|
||||||
{
|
|
||||||
# only show the message to people who did check the box to download from github, if you check the box
|
# only show the message to people who did check the box to download from github, if you check the box
|
||||||
# you consent to downloading it, no need to show extra dialogs
|
# you consent to downloading it, no need to show extra dialogs
|
||||||
[System.Windows.MessageBox]::Show("oscdimge.exe is not found on the system, winutil will now attempt do download and install it using choco. This might take a long time.")
|
[System.Windows.MessageBox]::Show("oscdimge.exe is not found on the system, winutil will now attempt do download and install it using choco. This might take a long time.")
|
||||||
@ -42,8 +40,7 @@ function Invoke-WPFGetIso {
|
|||||||
Install-WinUtilChoco
|
Install-WinUtilChoco
|
||||||
$chocoFound = [bool] (Get-Command -ErrorAction Ignore -Type Application choco)
|
$chocoFound = [bool] (Get-Command -ErrorAction Ignore -Type Application choco)
|
||||||
Write-Host "choco on system: $chocoFound"
|
Write-Host "choco on system: $chocoFound"
|
||||||
if (!$chocoFound)
|
if (!$chocoFound) {
|
||||||
{
|
|
||||||
[System.Windows.MessageBox]::Show("choco.exe is not found on the system, you need choco to download oscdimg.exe")
|
[System.Windows.MessageBox]::Show("choco.exe is not found on the system, you need choco to download oscdimg.exe")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@ -51,8 +48,7 @@ function Invoke-WPFGetIso {
|
|||||||
Start-Process -Verb runas -FilePath powershell.exe -ArgumentList "choco install windows-adk-oscdimg"
|
Start-Process -Verb runas -FilePath powershell.exe -ArgumentList "choco install windows-adk-oscdimg"
|
||||||
[System.Windows.MessageBox]::Show("oscdimg is installed, now close, reopen PowerShell terminal and re-launch winutil.ps1")
|
[System.Windows.MessageBox]::Show("oscdimg is installed, now close, reopen PowerShell terminal and re-launch winutil.ps1")
|
||||||
return
|
return
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
[System.Windows.MessageBox]::Show("oscdimge.exe is not found on the system, winutil will now attempt do download and install it from github. This might take a long time.")
|
[System.Windows.MessageBox]::Show("oscdimge.exe is not found on the system, winutil will now attempt do download and install it from github. This might take a long time.")
|
||||||
Get-Oscdimg -oscdimgPath $oscdimgPath
|
Get-Oscdimg -oscdimgPath $oscdimgPath
|
||||||
$oscdImgFound = Test-Path $oscdimgPath -PathType Leaf
|
$oscdImgFound = Test-Path $oscdimgPath -PathType Leaf
|
||||||
@ -60,8 +56,7 @@ function Invoke-WPFGetIso {
|
|||||||
$msg = "oscdimg was not downloaded can not proceed"
|
$msg = "oscdimg was not downloaded can not proceed"
|
||||||
[System.Windows.MessageBox]::Show($msg, "Winutil", [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Error)
|
[System.Windows.MessageBox]::Show($msg, "Winutil", [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Error)
|
||||||
return
|
return
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
Write-Host "oscdimg.exe was successfully downloaded from github"
|
Write-Host "oscdimg.exe was successfully downloaded from github"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -74,16 +69,14 @@ function Invoke-WPFGetIso {
|
|||||||
$openFileDialog.ShowDialog() | Out-Null
|
$openFileDialog.ShowDialog() | Out-Null
|
||||||
$filePath = $openFileDialog.FileName
|
$filePath = $openFileDialog.FileName
|
||||||
|
|
||||||
if ([string]::IsNullOrEmpty($filePath))
|
if ([string]::IsNullOrEmpty($filePath)) {
|
||||||
{
|
|
||||||
Write-Host "No ISO is chosen"
|
Write-Host "No ISO is chosen"
|
||||||
$sync.BusyMessage.Visibility="Hidden"
|
$sync.BusyMessage.Visibility="Hidden"
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
Write-Host "File path $($filePath)"
|
Write-Host "File path $($filePath)"
|
||||||
if (-not (Test-Path -Path $filePath -PathType Leaf))
|
if (-not (Test-Path -Path $filePath -PathType Leaf)) {
|
||||||
{
|
|
||||||
$msg = "File you've chosen doesn't exist"
|
$msg = "File you've chosen doesn't exist"
|
||||||
[System.Windows.MessageBox]::Show($msg, "Winutil", [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Error)
|
[System.Windows.MessageBox]::Show($msg, "Winutil", [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Error)
|
||||||
return
|
return
|
||||||
@ -98,20 +91,16 @@ function Invoke-WPFGetIso {
|
|||||||
# This is done to guarantee a dynamic solution, as the installation drive may be mounted to a letter different than C
|
# This is done to guarantee a dynamic solution, as the installation drive may be mounted to a letter different than C
|
||||||
$driveSpace = (Get-Volume -DriveLetter ([IO.Path]::GetPathRoot([Environment]::GetFolderPath([Environment+SpecialFolder]::UserProfile)).Replace(":\", "").Trim())).SizeRemaining
|
$driveSpace = (Get-Volume -DriveLetter ([IO.Path]::GetPathRoot([Environment]::GetFolderPath([Environment+SpecialFolder]::UserProfile)).Replace(":\", "").Trim())).SizeRemaining
|
||||||
Write-Debug "Free space on installation drive: $($driveSpace) bytes"
|
Write-Debug "Free space on installation drive: $($driveSpace) bytes"
|
||||||
if ($driveSpace -lt ($isoSize * 2))
|
if ($driveSpace -lt ($isoSize * 2)) {
|
||||||
{
|
|
||||||
# It's not critical and we _may_ continue. Output a warning
|
# It's not critical and we _may_ continue. Output a warning
|
||||||
Write-Warning "You may not have enough space for this operation. Proceed at your own risk."
|
Write-Warning "You may not have enough space for this operation. Proceed at your own risk."
|
||||||
}
|
}
|
||||||
elseif ($driveSpace -lt $isoSize)
|
elseif ($driveSpace -lt $isoSize) {
|
||||||
{
|
|
||||||
# It's critical and we can't continue. Output an error
|
# It's critical and we can't continue. Output an error
|
||||||
Write-Host "You don't have enough space for this operation. You need at least $([Math]::Round(($isoSize / ([Math]::Pow(1024, 2))) * 2, 2)) MB of free space to copy the ISO files to a temp directory and to be able to perform additional operations."
|
Write-Host "You don't have enough space for this operation. You need at least $([Math]::Round(($isoSize / ([Math]::Pow(1024, 2))) * 2, 2)) MB of free space to copy the ISO files to a temp directory and to be able to perform additional operations."
|
||||||
Set-WinUtilTaskbaritem -state "Error" -value 1 -overlay "warning"
|
Set-WinUtilTaskbaritem -state "Error" -value 1 -overlay "warning"
|
||||||
return
|
return
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
Write-Host "You have enough space for this operation."
|
Write-Host "You have enough space for this operation."
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -151,14 +140,12 @@ function Invoke-WPFGetIso {
|
|||||||
}
|
}
|
||||||
|
|
||||||
# Detect if the folders already exist and remove them
|
# Detect if the folders already exist and remove them
|
||||||
if (($sync.MicrowinMountDir.Text -ne "") -and (Test-Path -Path $sync.MicrowinMountDir.Text))
|
if (($sync.MicrowinMountDir.Text -ne "") -and (Test-Path -Path $sync.MicrowinMountDir.Text)) {
|
||||||
{
|
|
||||||
try {
|
try {
|
||||||
Write-Host "Deleting temporary files from previous run. Please wait..."
|
Write-Host "Deleting temporary files from previous run. Please wait..."
|
||||||
Remove-Item -Path $sync.MicrowinMountDir.Text -Recurse -Force
|
Remove-Item -Path $sync.MicrowinMountDir.Text -Recurse -Force
|
||||||
Remove-Item -Path $sync.MicrowinScratchDir.Text -Recurse -Force
|
Remove-Item -Path $sync.MicrowinScratchDir.Text -Recurse -Force
|
||||||
}
|
} catch {
|
||||||
catch {
|
|
||||||
Write-Host "Could not delete temporary files. You need to delete those manually."
|
Write-Host "Could not delete temporary files. You need to delete those manually."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -199,16 +186,14 @@ function Invoke-WPFGetIso {
|
|||||||
$wimFile = "$mountDir\sources\install.wim"
|
$wimFile = "$mountDir\sources\install.wim"
|
||||||
Write-Host "Getting image information $wimFile"
|
Write-Host "Getting image information $wimFile"
|
||||||
|
|
||||||
if ((-not (Test-Path -Path $wimFile -PathType Leaf)) -and (-not (Test-Path -Path $wimFile.Replace(".wim", ".esd").Trim() -PathType Leaf)))
|
if ((-not (Test-Path -Path $wimFile -PathType Leaf)) -and (-not (Test-Path -Path $wimFile.Replace(".wim", ".esd").Trim() -PathType Leaf))) {
|
||||||
{
|
|
||||||
$msg = "Neither install.wim nor install.esd exist in the image, this could happen if you use unofficial Windows images. Please don't use shady images from the internet, use only official images. Here are instructions how to download ISO images if the Microsoft website is not showing the link to download and ISO. https://www.techrepublic.com/article/how-to-download-a-windows-10-iso-file-without-using-the-media-creation-tool/"
|
$msg = "Neither install.wim nor install.esd exist in the image, this could happen if you use unofficial Windows images. Please don't use shady images from the internet, use only official images. Here are instructions how to download ISO images if the Microsoft website is not showing the link to download and ISO. https://www.techrepublic.com/article/how-to-download-a-windows-10-iso-file-without-using-the-media-creation-tool/"
|
||||||
Write-Host $msg
|
Write-Host $msg
|
||||||
[System.Windows.MessageBox]::Show($msg, "Winutil", [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Error)
|
[System.Windows.MessageBox]::Show($msg, "Winutil", [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Error)
|
||||||
Set-WinUtilTaskbaritem -state "Error" -value 1 -overlay "warning"
|
Set-WinUtilTaskbaritem -state "Error" -value 1 -overlay "warning"
|
||||||
throw
|
throw
|
||||||
}
|
}
|
||||||
elseif ((-not (Test-Path -Path $wimFile -PathType Leaf)) -and (Test-Path -Path $wimFile.Replace(".wim", ".esd").Trim() -PathType Leaf))
|
elseif ((-not (Test-Path -Path $wimFile -PathType Leaf)) -and (Test-Path -Path $wimFile.Replace(".wim", ".esd").Trim() -PathType Leaf)) {
|
||||||
{
|
|
||||||
Write-Host "Install.esd found on the image. It needs to be converted to a WIM file in order to begin processing"
|
Write-Host "Install.esd found on the image. It needs to be converted to a WIM file in order to begin processing"
|
||||||
$wimFile = $wimFile.Replace(".wim", ".esd").Trim()
|
$wimFile = $wimFile.Replace(".wim", ".esd").Trim()
|
||||||
}
|
}
|
||||||
@ -221,8 +206,7 @@ function Invoke-WPFGetIso {
|
|||||||
$sync.MicrowinWindowsFlavors.SelectedIndex = 0
|
$sync.MicrowinWindowsFlavors.SelectedIndex = 0
|
||||||
Write-Host "Finding suitable Pro edition. This can take some time. Do note that this is an automatic process that might not select the edition you want."
|
Write-Host "Finding suitable Pro edition. This can take some time. Do note that this is an automatic process that might not select the edition you want."
|
||||||
Get-WindowsImage -ImagePath $wimFile | ForEach-Object {
|
Get-WindowsImage -ImagePath $wimFile | ForEach-Object {
|
||||||
if ((Get-WindowsImage -ImagePath $wimFile -Index $_.ImageIndex).EditionId -eq "Professional")
|
if ((Get-WindowsImage -ImagePath $wimFile -Index $_.ImageIndex).EditionId -eq "Professional") {
|
||||||
{
|
|
||||||
# We have found the Pro edition
|
# We have found the Pro edition
|
||||||
$sync.MicrowinWindowsFlavors.SelectedIndex = $_.ImageIndex - 1
|
$sync.MicrowinWindowsFlavors.SelectedIndex = $_.ImageIndex - 1
|
||||||
}
|
}
|
||||||
@ -247,5 +231,3 @@ function Invoke-WPFGetIso {
|
|||||||
$sync.ProcessRunning = $false
|
$sync.ProcessRunning = $false
|
||||||
Set-WinUtilTaskbaritem -state "None" -overlay "checkmark"
|
Set-WinUtilTaskbaritem -state "None" -overlay "checkmark"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -33,8 +33,7 @@ function Invoke-WPFImpex {
|
|||||||
|
|
||||||
if($FileBrowser.FileName -eq "") {
|
if($FileBrowser.FileName -eq "") {
|
||||||
return
|
return
|
||||||
}
|
} else {
|
||||||
else{
|
|
||||||
$Config = $FileBrowser.FileName
|
$Config = $FileBrowser.FileName
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -59,8 +59,7 @@ function Invoke-WPFInstall {
|
|||||||
Write-Host "-- Installs have finished ---"
|
Write-Host "-- Installs have finished ---"
|
||||||
Write-Host "==========================================="
|
Write-Host "==========================================="
|
||||||
$sync.form.Dispatcher.Invoke([action]{ Set-WinUtilTaskbaritem -state "None" -overlay "checkmark" })
|
$sync.form.Dispatcher.Invoke([action]{ Set-WinUtilTaskbaritem -state "None" -overlay "checkmark" })
|
||||||
}
|
} catch {
|
||||||
Catch {
|
|
||||||
Write-Host "==========================================="
|
Write-Host "==========================================="
|
||||||
Write-Host "Error: $_"
|
Write-Host "Error: $_"
|
||||||
Write-Host "==========================================="
|
Write-Host "==========================================="
|
||||||
|
@ -63,18 +63,14 @@ public class PowerManagement {
|
|||||||
$scratchDir = $sync.MicrowinScratchDir.Text
|
$scratchDir = $sync.MicrowinScratchDir.Text
|
||||||
|
|
||||||
# Detect if the Windows image is an ESD file and convert it to WIM
|
# Detect if the Windows image is an ESD file and convert it to WIM
|
||||||
if (-not (Test-Path -Path $mountDir\sources\install.wim -PathType Leaf) -and (Test-Path -Path $mountDir\sources\install.esd -PathType Leaf))
|
if (-not (Test-Path -Path $mountDir\sources\install.wim -PathType Leaf) -and (Test-Path -Path $mountDir\sources\install.esd -PathType Leaf)) {
|
||||||
{
|
|
||||||
Write-Host "Exporting Windows image to a WIM file, keeping the index we want to work on. This can take several minutes, depending on the performance of your computer..."
|
Write-Host "Exporting Windows image to a WIM file, keeping the index we want to work on. This can take several minutes, depending on the performance of your computer..."
|
||||||
Export-WindowsImage -SourceImagePath $mountDir\sources\install.esd -SourceIndex $index -DestinationImagePath $mountDir\sources\install.wim -CompressionType "Max"
|
Export-WindowsImage -SourceImagePath $mountDir\sources\install.esd -SourceIndex $index -DestinationImagePath $mountDir\sources\install.wim -CompressionType "Max"
|
||||||
if ($?)
|
if ($?) {
|
||||||
{
|
|
||||||
Remove-Item -Path $mountDir\sources\install.esd -Force
|
Remove-Item -Path $mountDir\sources\install.esd -Force
|
||||||
# Since we've already exported the image index we wanted, switch to the first one
|
# Since we've already exported the image index we wanted, switch to the first one
|
||||||
$index = 1
|
$index = 1
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
$msg = "The export process has failed and MicroWin processing cannot continue"
|
$msg = "The export process has failed and MicroWin processing cannot continue"
|
||||||
Write-Host "Failed to export the image"
|
Write-Host "Failed to export the image"
|
||||||
[System.Windows.MessageBox]::Show($msg, "Winutil", [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Error)
|
[System.Windows.MessageBox]::Show($msg, "Winutil", [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Error)
|
||||||
@ -86,8 +82,7 @@ public class PowerManagement {
|
|||||||
$imgVersion = (Get-WindowsImage -ImagePath $mountDir\sources\install.wim -Index $index).Version
|
$imgVersion = (Get-WindowsImage -ImagePath $mountDir\sources\install.wim -Index $index).Version
|
||||||
|
|
||||||
# Detect image version to avoid performing MicroWin processing on Windows 8 and earlier
|
# Detect image version to avoid performing MicroWin processing on Windows 8 and earlier
|
||||||
if ((Test-CompatibleImage $imgVersion $([System.Version]::new(10,0,10240,0))) -eq $false)
|
if ((Test-CompatibleImage $imgVersion $([System.Version]::new(10,0,10240,0))) -eq $false) {
|
||||||
{
|
|
||||||
$msg = "This image is not compatible with MicroWin processing. Make sure it isn't a Windows 8 or earlier image."
|
$msg = "This image is not compatible with MicroWin processing. Make sure it isn't a Windows 8 or earlier image."
|
||||||
$dlg_msg = $msg + "`n`nIf you want more information, the version of the image selected is $($imgVersion)`n`nIf an image has been incorrectly marked as incompatible, report an issue to the developers."
|
$dlg_msg = $msg + "`n`nIf you want more information, the version of the image selected is $($imgVersion)`n`nIf an image has been incorrectly marked as incompatible, report an issue to the developers."
|
||||||
Write-Host $msg
|
Write-Host $msg
|
||||||
@ -98,8 +93,7 @@ public class PowerManagement {
|
|||||||
|
|
||||||
$mountDirExists = Test-Path $mountDir
|
$mountDirExists = Test-Path $mountDir
|
||||||
$scratchDirExists = Test-Path $scratchDir
|
$scratchDirExists = Test-Path $scratchDir
|
||||||
if (-not $mountDirExists -or -not $scratchDirExists)
|
if (-not $mountDirExists -or -not $scratchDirExists) {
|
||||||
{
|
|
||||||
Write-Error "Required directories '$mountDirExists' '$scratchDirExists' and do not exist."
|
Write-Error "Required directories '$mountDirExists' '$scratchDirExists' and do not exist."
|
||||||
Set-WinUtilTaskbaritem -state "Error" -value 1 -overlay "warning"
|
Set-WinUtilTaskbaritem -state "Error" -value 1 -overlay "warning"
|
||||||
return
|
return
|
||||||
@ -109,68 +103,49 @@ public class PowerManagement {
|
|||||||
|
|
||||||
Write-Host "Mounting Windows image. This may take a while."
|
Write-Host "Mounting Windows image. This may take a while."
|
||||||
Mount-WindowsImage -ImagePath "$mountDir\sources\install.wim" -Index $index -Path "$scratchDir"
|
Mount-WindowsImage -ImagePath "$mountDir\sources\install.wim" -Index $index -Path "$scratchDir"
|
||||||
if ($?)
|
if ($?) {
|
||||||
{
|
|
||||||
Write-Host "Mounting complete! Performing removal of applications..."
|
Write-Host "Mounting complete! Performing removal of applications..."
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
Write-Host "Could not mount image. Exiting..."
|
Write-Host "Could not mount image. Exiting..."
|
||||||
Set-WinUtilTaskbaritem -state "Error" -value 1 -overlay "warning"
|
Set-WinUtilTaskbaritem -state "Error" -value 1 -overlay "warning"
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($importDrivers)
|
if ($importDrivers) {
|
||||||
{
|
|
||||||
Write-Host "Exporting drivers from active installation..."
|
Write-Host "Exporting drivers from active installation..."
|
||||||
if (Test-Path "$env:TEMP\DRV_EXPORT")
|
if (Test-Path "$env:TEMP\DRV_EXPORT") {
|
||||||
{
|
|
||||||
Remove-Item "$env:TEMP\DRV_EXPORT" -Recurse -Force
|
Remove-Item "$env:TEMP\DRV_EXPORT" -Recurse -Force
|
||||||
}
|
}
|
||||||
if (($injectDrivers -and (Test-Path $sync.MicrowinDriverLocation.Text)))
|
if (($injectDrivers -and (Test-Path $sync.MicrowinDriverLocation.Text))) {
|
||||||
{
|
|
||||||
Write-Host "Using specified driver source..."
|
Write-Host "Using specified driver source..."
|
||||||
dism /english /online /export-driver /destination="$($sync.MicrowinDriverLocation.Text)" | Out-Host
|
dism /english /online /export-driver /destination="$($sync.MicrowinDriverLocation.Text)" | Out-Host
|
||||||
if ($?)
|
if ($?) {
|
||||||
{
|
|
||||||
# Don't add exported drivers yet, that is run later
|
# Don't add exported drivers yet, that is run later
|
||||||
Write-Host "Drivers have been exported successfully."
|
Write-Host "Drivers have been exported successfully."
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
Write-Host "Failed to export drivers."
|
Write-Host "Failed to export drivers."
|
||||||
}
|
}
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
New-Item -Path "$env:TEMP\DRV_EXPORT" -ItemType Directory -Force
|
New-Item -Path "$env:TEMP\DRV_EXPORT" -ItemType Directory -Force
|
||||||
dism /english /online /export-driver /destination="$env:TEMP\DRV_EXPORT" | Out-Host
|
dism /english /online /export-driver /destination="$env:TEMP\DRV_EXPORT" | Out-Host
|
||||||
if ($?)
|
if ($?) {
|
||||||
{
|
|
||||||
Write-Host "Adding exported drivers..."
|
Write-Host "Adding exported drivers..."
|
||||||
dism /english /image="$scratchDir" /add-driver /driver="$env:TEMP\DRV_EXPORT" /recurse | Out-Host
|
dism /english /image="$scratchDir" /add-driver /driver="$env:TEMP\DRV_EXPORT" /recurse | Out-Host
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
Write-Host "Failed to export drivers. Continuing without importing them..."
|
Write-Host "Failed to export drivers. Continuing without importing them..."
|
||||||
}
|
}
|
||||||
if (Test-Path "$env:TEMP\DRV_EXPORT")
|
if (Test-Path "$env:TEMP\DRV_EXPORT") {
|
||||||
{
|
|
||||||
Remove-Item "$env:TEMP\DRV_EXPORT" -Recurse -Force
|
Remove-Item "$env:TEMP\DRV_EXPORT" -Recurse -Force
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($injectDrivers)
|
if ($injectDrivers) {
|
||||||
{
|
|
||||||
$driverPath = $sync.MicrowinDriverLocation.Text
|
$driverPath = $sync.MicrowinDriverLocation.Text
|
||||||
if (Test-Path $driverPath)
|
if (Test-Path $driverPath) {
|
||||||
{
|
|
||||||
Write-Host "Adding Windows Drivers image($scratchDir) drivers($driverPath) "
|
Write-Host "Adding Windows Drivers image($scratchDir) drivers($driverPath) "
|
||||||
dism /English /image:$scratchDir /add-driver /driver:$driverPath /recurse | Out-Host
|
dism /English /image:$scratchDir /add-driver /driver:$driverPath /recurse | Out-Host
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
Write-Host "Path to drivers is invalid continuing without driver injection"
|
Write-Host "Path to drivers is invalid continuing without driver injection"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -179,13 +154,11 @@ public class PowerManagement {
|
|||||||
Remove-Features -keepDefender:$keepDefender
|
Remove-Features -keepDefender:$keepDefender
|
||||||
Write-Host "Removing features complete!"
|
Write-Host "Removing features complete!"
|
||||||
|
|
||||||
if (!$keepPackages)
|
if (!$keepPackages) {
|
||||||
{
|
|
||||||
Write-Host "Removing OS packages"
|
Write-Host "Removing OS packages"
|
||||||
Remove-Packages
|
Remove-Packages
|
||||||
}
|
}
|
||||||
if (!$keepProvisionedPackages)
|
if (!$keepProvisionedPackages) {
|
||||||
{
|
|
||||||
Write-Host "Removing Appx Bloat"
|
Write-Host "Removing Appx Bloat"
|
||||||
Remove-ProvisionedPackages -keepSecurity:$keepDefender
|
Remove-ProvisionedPackages -keepSecurity:$keepDefender
|
||||||
}
|
}
|
||||||
@ -196,14 +169,12 @@ public class PowerManagement {
|
|||||||
Remove-FileOrDirectory -pathToDelete "$($scratchDir)\Windows\System32\WebThreatDefSvc" -Directory
|
Remove-FileOrDirectory -pathToDelete "$($scratchDir)\Windows\System32\WebThreatDefSvc" -Directory
|
||||||
|
|
||||||
# Defender is hidden in 2 places we removed a feature above now need to remove it from the disk
|
# Defender is hidden in 2 places we removed a feature above now need to remove it from the disk
|
||||||
if (!$keepDefender)
|
if (!$keepDefender) {
|
||||||
{
|
|
||||||
Write-Host "Removing Defender"
|
Write-Host "Removing Defender"
|
||||||
Remove-FileOrDirectory -pathToDelete "$($scratchDir)\Program Files\Windows Defender" -Directory
|
Remove-FileOrDirectory -pathToDelete "$($scratchDir)\Program Files\Windows Defender" -Directory
|
||||||
Remove-FileOrDirectory -pathToDelete "$($scratchDir)\Program Files (x86)\Windows Defender"
|
Remove-FileOrDirectory -pathToDelete "$($scratchDir)\Program Files (x86)\Windows Defender"
|
||||||
}
|
}
|
||||||
if (!$keepEdge)
|
if (!$keepEdge) {
|
||||||
{
|
|
||||||
Write-Host "Removing Edge"
|
Write-Host "Removing Edge"
|
||||||
Remove-FileOrDirectory -pathToDelete "$($scratchDir)\Program Files (x86)\Microsoft" -mask "*edge*" -Directory
|
Remove-FileOrDirectory -pathToDelete "$($scratchDir)\Program Files (x86)\Microsoft" -mask "*edge*" -Directory
|
||||||
Remove-FileOrDirectory -pathToDelete "$($scratchDir)\Program Files\Microsoft" -mask "*edge*" -Directory
|
Remove-FileOrDirectory -pathToDelete "$($scratchDir)\Program Files\Microsoft" -mask "*edge*" -Directory
|
||||||
@ -311,16 +282,14 @@ public class PowerManagement {
|
|||||||
reg add "HKLM\zSYSTEM\Setup\LabConfig" /v "BypassTPMCheck" /t REG_DWORD /d 1 /f
|
reg add "HKLM\zSYSTEM\Setup\LabConfig" /v "BypassTPMCheck" /t REG_DWORD /d 1 /f
|
||||||
reg add "HKLM\zSYSTEM\Setup\MoSetup" /v "AllowUpgradesWithUnsupportedTPMOrCPU" /t REG_DWORD /d 1 /f
|
reg add "HKLM\zSYSTEM\Setup\MoSetup" /v "AllowUpgradesWithUnsupportedTPMOrCPU" /t REG_DWORD /d 1 /f
|
||||||
|
|
||||||
if (!$keepEdge)
|
if (!$keepEdge) {
|
||||||
{
|
|
||||||
Write-Host "Removing Edge icon from taskbar"
|
Write-Host "Removing Edge icon from taskbar"
|
||||||
reg delete "HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /v "Favorites" /f >$null 2>&1
|
reg delete "HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /v "Favorites" /f >$null 2>&1
|
||||||
reg delete "HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /v "FavoritesChanges" /f >$null 2>&1
|
reg delete "HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /v "FavoritesChanges" /f >$null 2>&1
|
||||||
reg delete "HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /v "Pinned" /f >$null 2>&1
|
reg delete "HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /v "Pinned" /f >$null 2>&1
|
||||||
reg delete "HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /v "LayoutCycle" /f >$null 2>&1
|
reg delete "HKLM\zSOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Taskband" /v "LayoutCycle" /f >$null 2>&1
|
||||||
Write-Host "Edge icon removed from taskbar"
|
Write-Host "Edge icon removed from taskbar"
|
||||||
if (Test-Path "HKLM:\zSOFTWARE\WOW6432Node")
|
if (Test-Path "HKLM:\zSOFTWARE\WOW6432Node") {
|
||||||
{
|
|
||||||
# Remove leftovers of 64-bit installations
|
# Remove leftovers of 64-bit installations
|
||||||
# ---
|
# ---
|
||||||
# Remove registry values first...
|
# Remove registry values first...
|
||||||
@ -383,8 +352,7 @@ public class PowerManagement {
|
|||||||
Remove-Item "$mountDir\sources\install.wim"
|
Remove-Item "$mountDir\sources\install.wim"
|
||||||
Rename-Item "$mountDir\sources\install2.wim" "$mountDir\sources\install.wim"
|
Rename-Item "$mountDir\sources\install2.wim" "$mountDir\sources\install.wim"
|
||||||
|
|
||||||
if (-not (Test-Path -Path "$mountDir\sources\install.wim"))
|
if (-not (Test-Path -Path "$mountDir\sources\install.wim")) {
|
||||||
{
|
|
||||||
Write-Error "Something went wrong and '$mountDir\sources\install.wim' doesn't exist. Please report this bug to the devs"
|
Write-Error "Something went wrong and '$mountDir\sources\install.wim' doesn't exist. Please report this bug to the devs"
|
||||||
Set-WinUtilTaskbaritem -state "Error" -value 1 -overlay "warning"
|
Set-WinUtilTaskbaritem -state "Error" -value 1 -overlay "warning"
|
||||||
return
|
return
|
||||||
@ -395,16 +363,12 @@ public class PowerManagement {
|
|||||||
Write-Host "Mounting boot image $mountDir\sources\boot.wim into $scratchDir"
|
Write-Host "Mounting boot image $mountDir\sources\boot.wim into $scratchDir"
|
||||||
Mount-WindowsImage -ImagePath "$mountDir\sources\boot.wim" -Index 2 -Path "$scratchDir"
|
Mount-WindowsImage -ImagePath "$mountDir\sources\boot.wim" -Index 2 -Path "$scratchDir"
|
||||||
|
|
||||||
if ($injectDrivers)
|
if ($injectDrivers) {
|
||||||
{
|
|
||||||
$driverPath = $sync.MicrowinDriverLocation.Text
|
$driverPath = $sync.MicrowinDriverLocation.Text
|
||||||
if (Test-Path $driverPath)
|
if (Test-Path $driverPath) {
|
||||||
{
|
|
||||||
Write-Host "Adding Windows Drivers image($scratchDir) drivers($driverPath) "
|
Write-Host "Adding Windows Drivers image($scratchDir) drivers($driverPath) "
|
||||||
dism /English /image:$scratchDir /add-driver /driver:$driverPath /recurse | Out-Host
|
dism /English /image:$scratchDir /add-driver /driver:$driverPath /recurse | Out-Host
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
Write-Host "Path to drivers is invalid continuing without driver injection"
|
Write-Host "Path to drivers is invalid continuing without driver injection"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -447,8 +411,7 @@ public class PowerManagement {
|
|||||||
# if it is not in temp it is part of ADK and is in global PATH so just set it to oscdimg.exe
|
# if it is not in temp it is part of ADK and is in global PATH so just set it to oscdimg.exe
|
||||||
$oscdimgPath = Join-Path $env:TEMP 'oscdimg.exe'
|
$oscdimgPath = Join-Path $env:TEMP 'oscdimg.exe'
|
||||||
$oscdImgFound = Test-Path $oscdimgPath -PathType Leaf
|
$oscdImgFound = Test-Path $oscdimgPath -PathType Leaf
|
||||||
if (!$oscdImgFound)
|
if (!$oscdImgFound) {
|
||||||
{
|
|
||||||
$oscdimgPath = "oscdimg.exe"
|
$oscdimgPath = "oscdimg.exe"
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -460,8 +423,7 @@ public class PowerManagement {
|
|||||||
|
|
||||||
Write-Host "OSCDIMG Error Level : $($oscdimgProc.ExitCode)"
|
Write-Host "OSCDIMG Error Level : $($oscdimgProc.ExitCode)"
|
||||||
|
|
||||||
if ($copyToUSB)
|
if ($copyToUSB) {
|
||||||
{
|
|
||||||
Write-Host "Copying target ISO to the USB drive"
|
Write-Host "Copying target ISO to the USB drive"
|
||||||
Copy-ToUSB("$($SaveDialog.FileName)")
|
Copy-ToUSB("$($SaveDialog.FileName)")
|
||||||
if ($?) { Write-Host "Done Copying target ISO to USB drive!" } else { Write-Host "ISO copy failed." }
|
if ($?) { Write-Host "Done Copying target ISO to USB drive!" } else { Write-Host "ISO copy failed." }
|
||||||
@ -485,15 +447,12 @@ public class PowerManagement {
|
|||||||
[System.Windows.MessageBox]::Show($msg, "Winutil", [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Information)
|
[System.Windows.MessageBox]::Show($msg, "Winutil", [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Information)
|
||||||
} else {
|
} else {
|
||||||
Write-Host "ISO creation failed. The "$($mountDir)" directory has not been removed."
|
Write-Host "ISO creation failed. The "$($mountDir)" directory has not been removed."
|
||||||
try
|
try {
|
||||||
{
|
|
||||||
# This creates a new Win32 exception from which we can extract a message in the system language.
|
# This creates a new Win32 exception from which we can extract a message in the system language.
|
||||||
# Now, this will NOT throw an exception
|
# Now, this will NOT throw an exception
|
||||||
$exitCode = New-Object System.ComponentModel.Win32Exception($LASTEXITCODE)
|
$exitCode = New-Object System.ComponentModel.Win32Exception($LASTEXITCODE)
|
||||||
Write-Host "Reason: $($exitCode.Message)"
|
Write-Host "Reason: $($exitCode.Message)"
|
||||||
}
|
} catch {
|
||||||
catch
|
|
||||||
{
|
|
||||||
# Could not get error description from Windows APIs
|
# Could not get error description from Windows APIs
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -10,8 +10,7 @@ function Invoke-WPFOOSU {
|
|||||||
Invoke-WebRequest -Uri "https://dl5.oo-software.com/files/ooshutup10/OOSU10.exe" -OutFile $OOSU_filepath
|
Invoke-WebRequest -Uri "https://dl5.oo-software.com/files/ooshutup10/OOSU10.exe" -OutFile $OOSU_filepath
|
||||||
Write-Host "Starting OO Shutup 10 ..."
|
Write-Host "Starting OO Shutup 10 ..."
|
||||||
Start-Process $OOSU_filepath
|
Start-Process $OOSU_filepath
|
||||||
}
|
} catch {
|
||||||
catch {
|
|
||||||
Write-Host "Error Downloading and Running OO Shutup 10" -ForegroundColor Red
|
Write-Host "Error Downloading and Running OO Shutup 10" -ForegroundColor Red
|
||||||
}
|
}
|
||||||
finally {
|
finally {
|
||||||
|
@ -22,8 +22,7 @@ function Invoke-WPFPresets {
|
|||||||
|
|
||||||
if($imported -eq $true) {
|
if($imported -eq $true) {
|
||||||
$CheckBoxesToCheck = $preset
|
$CheckBoxesToCheck = $preset
|
||||||
}
|
} else {
|
||||||
Else{
|
|
||||||
$CheckBoxesToCheck = $sync.configs.preset.$preset
|
$CheckBoxesToCheck = $sync.configs.preset.$preset
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -39,8 +38,7 @@ function Invoke-WPFPresets {
|
|||||||
foreach ($CheckBox in $CheckBoxes) {
|
foreach ($CheckBox in $CheckBoxes) {
|
||||||
$checkboxName = $CheckBox.Key
|
$checkboxName = $CheckBox.Key
|
||||||
|
|
||||||
if (-not $CheckBoxesToCheck)
|
if (-not $CheckBoxesToCheck) {
|
||||||
{
|
|
||||||
$sync.$checkboxName.IsChecked = $false
|
$sync.$checkboxName.IsChecked = $false
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
@ -38,8 +38,7 @@ function Invoke-WPFRunspace {
|
|||||||
$script:handle = $script:powershell.BeginInvoke()
|
$script:handle = $script:powershell.BeginInvoke()
|
||||||
|
|
||||||
# Clean up the RunspacePool threads when they are complete, and invoke the garbage collector to clean up the memory
|
# Clean up the RunspacePool threads when they are complete, and invoke the garbage collector to clean up the memory
|
||||||
if ($script:handle.IsCompleted)
|
if ($script:handle.IsCompleted) {
|
||||||
{
|
|
||||||
$script:powershell.EndInvoke($script:handle)
|
$script:powershell.EndInvoke($script:handle)
|
||||||
$script:powershell.Dispose()
|
$script:powershell.Dispose()
|
||||||
$sync.runspace.Dispose()
|
$sync.runspace.Dispose()
|
||||||
|
@ -23,8 +23,7 @@ function Invoke-WPFShortcut {
|
|||||||
# Use Powershell 7 if installed and fallback to PS5 if not
|
# Use Powershell 7 if installed and fallback to PS5 if not
|
||||||
if (Get-Command "pwsh" -ErrorAction SilentlyContinue) {
|
if (Get-Command "pwsh" -ErrorAction SilentlyContinue) {
|
||||||
$shell = "pwsh.exe"
|
$shell = "pwsh.exe"
|
||||||
}
|
} else {
|
||||||
else{
|
|
||||||
$shell = "powershell.exe"
|
$shell = "powershell.exe"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -21,8 +21,7 @@ function Invoke-WPFTab {
|
|||||||
$sync[$PSItem.Name].IsChecked = $false
|
$sync[$PSItem.Name].IsChecked = $false
|
||||||
# $tabNumber = [int]($PSItem.Name -replace "WPFTab","" -replace "BT","") - 1
|
# $tabNumber = [int]($PSItem.Name -replace "WPFTab","" -replace "BT","") - 1
|
||||||
# $sync.$tabNav.Items[$tabNumber].IsSelected = $false
|
# $sync.$tabNav.Items[$tabNumber].IsSelected = $false
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
$sync["$ClickedTab"].IsChecked = $true
|
$sync["$ClickedTab"].IsChecked = $true
|
||||||
$tabNumber = [int]($ClickedTab-replace "WPFTab","" -replace "BT","") - 1
|
$tabNumber = [int]($ClickedTab-replace "WPFTab","" -replace "BT","") - 1
|
||||||
$sync.$tabNav.Items[$tabNumber].IsSelected = $true
|
$sync.$tabNav.Items[$tabNumber].IsSelected = $true
|
||||||
|
@ -9,7 +9,7 @@ Function Invoke-WPFUltimatePerformance {
|
|||||||
|
|
||||||
#>
|
#>
|
||||||
param($State)
|
param($State)
|
||||||
Try{
|
try {
|
||||||
# Check if Ultimate Performance plan is installed
|
# Check if Ultimate Performance plan is installed
|
||||||
$ultimatePlan = powercfg -list | Select-String -Pattern "Ultimate Performance"
|
$ultimatePlan = powercfg -list | Select-String -Pattern "Ultimate Performance"
|
||||||
if($state -eq "Enable") {
|
if($state -eq "Enable") {
|
||||||
@ -47,7 +47,7 @@ Function Invoke-WPFUltimatePerformance {
|
|||||||
Write-Host "Ultimate Performance plan is not installed."
|
Write-Host "Ultimate Performance plan is not installed."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} Catch{
|
} catch {
|
||||||
Write-Warning $psitem.Exception.Message
|
Write-Warning $psitem.Exception.Message
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -66,8 +66,7 @@ function Invoke-WPFUnInstall {
|
|||||||
Write-Host "-- Uninstalls have finished ---"
|
Write-Host "-- Uninstalls have finished ---"
|
||||||
Write-Host "==========================================="
|
Write-Host "==========================================="
|
||||||
$sync.form.Dispatcher.Invoke([action]{ Set-WinUtilTaskbaritem -state "None" -overlay "checkmark" })
|
$sync.form.Dispatcher.Invoke([action]{ Set-WinUtilTaskbaritem -state "None" -overlay "checkmark" })
|
||||||
}
|
} catch {
|
||||||
Catch {
|
|
||||||
Write-Host "==========================================="
|
Write-Host "==========================================="
|
||||||
Write-Host "Error: $_"
|
Write-Host "Error: $_"
|
||||||
Write-Host "==========================================="
|
Write-Host "==========================================="
|
||||||
|
@ -39,8 +39,7 @@ function Invoke-WPFtweaksbutton {
|
|||||||
|
|
||||||
for ($i = 0; $i -lt $Tweaks.Count; $i++) {
|
for ($i = 0; $i -lt $Tweaks.Count; $i++) {
|
||||||
Set-WinUtilProgressBar -Label "Applying $($tweaks[$i])" -Percent ($i / $Tweaks.Count * 100)
|
Set-WinUtilProgressBar -Label "Applying $($tweaks[$i])" -Percent ($i / $Tweaks.Count * 100)
|
||||||
Invoke-WinUtilTweaks $tweaks[$i]
|
Invoke-WinUtilTweaks $tweaks[$i]$sync.form.Dispatcher.Invoke([action]{ Set-WinUtilTaskbaritem -value ($i/$Tweaks.Count) })
|
||||||
$sync.form.Dispatcher.Invoke([action]{ Set-WinUtilTaskbaritem -value ($i/$Tweaks.Count) })
|
|
||||||
}
|
}
|
||||||
Set-WinUtilProgressBar -Label "Tweaks finished" -Percent 100
|
Set-WinUtilProgressBar -Label "Tweaks finished" -Percent 100
|
||||||
$sync.ProcessRunning = $false
|
$sync.ProcessRunning = $false
|
||||||
|
@ -55,12 +55,10 @@ $inputXML = $inputXML -replace 'mc:Ignorable="d"', '' -replace "x:N", 'N' -repla
|
|||||||
if ((Get-WinUtilToggleStatus WPFToggleDarkMode) -eq $True) {
|
if ((Get-WinUtilToggleStatus WPFToggleDarkMode) -eq $True) {
|
||||||
if (Invoke-WinUtilGPU -eq $True) {
|
if (Invoke-WinUtilGPU -eq $True) {
|
||||||
$ctttheme = 'Matrix'
|
$ctttheme = 'Matrix'
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
$ctttheme = 'Dark'
|
$ctttheme = 'Dark'
|
||||||
}
|
}
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
$ctttheme = 'Classic'
|
$ctttheme = 'Classic'
|
||||||
}
|
}
|
||||||
$inputXML = Set-WinUtilUITheme -inputXML $inputXML -themeName $ctttheme
|
$inputXML = Set-WinUtilUITheme -inputXML $inputXML -themeName $ctttheme
|
||||||
@ -179,8 +177,7 @@ $commonKeyEvents = {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($_.Key -eq "Escape")
|
if ($_.Key -eq "Escape") {
|
||||||
{
|
|
||||||
$sync.SearchBar.SelectAll()
|
$sync.SearchBar.SelectAll()
|
||||||
$sync.SearchBar.Text = ""
|
$sync.SearchBar.Text = ""
|
||||||
$sync.SearchBarClearButton.Visibility = "Collapsed"
|
$sync.SearchBarClearButton.Visibility = "Collapsed"
|
||||||
@ -188,8 +185,7 @@ $commonKeyEvents = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
# don't ask, I know what I'm doing, just go...
|
# don't ask, I know what I'm doing, just go...
|
||||||
if (($_.Key -eq "Q" -and $_.KeyboardDevice.Modifiers -eq "Ctrl"))
|
if (($_.Key -eq "Q" -and $_.KeyboardDevice.Modifiers -eq "Ctrl")) {
|
||||||
{
|
|
||||||
$this.Close()
|
$this.Close()
|
||||||
}
|
}
|
||||||
if ($_.KeyboardDevice.Modifiers -eq "Alt") {
|
if ($_.KeyboardDevice.Modifiers -eq "Alt") {
|
||||||
@ -232,12 +228,9 @@ $sync["Form"].Add_MouseLeftButtonDown({
|
|||||||
})
|
})
|
||||||
|
|
||||||
$sync["Form"].Add_MouseDoubleClick({
|
$sync["Form"].Add_MouseDoubleClick({
|
||||||
if ($sync["Form"].WindowState -eq [Windows.WindowState]::Normal)
|
if ($sync["Form"].WindowState -eq [Windows.WindowState]::Normal) {
|
||||||
{
|
|
||||||
$sync["Form"].WindowState = [Windows.WindowState]::Maximized;
|
$sync["Form"].WindowState = [Windows.WindowState]::Maximized;
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
$sync["Form"].WindowState = [Windows.WindowState]::Normal;
|
$sync["Form"].WindowState = [Windows.WindowState]::Normal;
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
@ -377,8 +370,7 @@ $sync["SearchBar"].Add_TextChanged({
|
|||||||
|
|
||||||
if ($sync.SearchBar.Text -ne "") {
|
if ($sync.SearchBar.Text -ne "") {
|
||||||
$sync.SearchBarClearButton.Visibility = "Visible"
|
$sync.SearchBarClearButton.Visibility = "Visible"
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
$sync.SearchBarClearButton.Visibility = "Collapsed"
|
$sync.SearchBarClearButton.Visibility = "Collapsed"
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -404,8 +396,7 @@ $sync["SearchBar"].Add_TextChanged({
|
|||||||
if ($textBlock -ne $null) {
|
if ($textBlock -ne $null) {
|
||||||
$textBlock.Visibility = "Visible"
|
$textBlock.Visibility = "Visible"
|
||||||
}
|
}
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
$CheckBox.Value.Visibility = "Collapsed"
|
$CheckBox.Value.Visibility = "Collapsed"
|
||||||
# Set the corresponding text block visibility
|
# Set the corresponding text block visibility
|
||||||
if ($textBlock -ne $null) {
|
if ($textBlock -ne $null) {
|
||||||
@ -421,8 +412,7 @@ $sync["SearchBar"].Add_TextChanged({
|
|||||||
}
|
}
|
||||||
if ($activeCategories) {
|
if ($activeCategories) {
|
||||||
$inactiveCategories = Compare-Object -ReferenceObject $allCategories -DifferenceObject $activeCategories -PassThru
|
$inactiveCategories = Compare-Object -ReferenceObject $allCategories -DifferenceObject $activeCategories -PassThru
|
||||||
}
|
} else {
|
||||||
else{
|
|
||||||
$inactiveCategories = $allCategories
|
$inactiveCategories = $allCategories
|
||||||
}
|
}
|
||||||
foreach ($category in $inactiveCategories) {
|
foreach ($category in $inactiveCategories) {
|
||||||
@ -471,8 +461,7 @@ $sync["SettingsButton"].Add_Click({
|
|||||||
Write-Debug "SettingsButton clicked"
|
Write-Debug "SettingsButton clicked"
|
||||||
if ($sync["SettingsPopup"].IsOpen) {
|
if ($sync["SettingsPopup"].IsOpen) {
|
||||||
$sync["SettingsPopup"].IsOpen = $false
|
$sync["SettingsPopup"].IsOpen = $false
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
$sync["SettingsPopup"].IsOpen = $true
|
$sync["SettingsPopup"].IsOpen = $true
|
||||||
}
|
}
|
||||||
$_.Handled = $false
|
$_.Handled = $false
|
||||||
@ -528,8 +517,7 @@ $sync["SponsorMenuItem"].Add_Click({
|
|||||||
|
|
||||||
# Append the sponsors to the authorInfo
|
# Append the sponsors to the authorInfo
|
||||||
$sponsors | ForEach-Object { $authorInfo += "$_`n" }
|
$sponsors | ForEach-Object { $authorInfo += "$_`n" }
|
||||||
}
|
} catch {
|
||||||
catch {
|
|
||||||
$authorInfo += "An error occurred while fetching or processing the sponsors: $_`n"
|
$authorInfo += "An error occurred while fetching or processing the sponsors: $_`n"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -45,8 +45,7 @@ $sync.configs = @{}
|
|||||||
$sync.ProcessRunning = $false
|
$sync.ProcessRunning = $false
|
||||||
|
|
||||||
# If script isn't running as admin, show error message and quit
|
# If script isn't running as admin, show error message and quit
|
||||||
If (([Security.Principal.WindowsIdentity]::GetCurrent()).Owner.Value -ne "S-1-5-32-544")
|
If (([Security.Principal.WindowsIdentity]::GetCurrent()).Owner.Value -ne "S-1-5-32-544") {
|
||||||
{
|
|
||||||
Write-Host "===========================================" -Foregroundcolor Red
|
Write-Host "===========================================" -Foregroundcolor Red
|
||||||
Write-Host "-- Scripts must be run as Administrator ---" -Foregroundcolor Red
|
Write-Host "-- Scripts must be run as Administrator ---" -Foregroundcolor Red
|
||||||
Write-Host "-- Right-Click Start -> Terminal(Admin) ---" -Foregroundcolor Red
|
Write-Host "-- Right-Click Start -> Terminal(Admin) ---" -Foregroundcolor Red
|
||||||
|
139
tools/Invoke-Preprocessing.ps1
Normal file
139
tools/Invoke-Preprocessing.ps1
Normal file
@ -0,0 +1,139 @@
|
|||||||
|
function Invoke-Preprocessing {
|
||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
A function that does Code Formatting using RegEx, useful when trying to force specific coding standard(s) to a project.
|
||||||
|
|
||||||
|
.PARAMETER ThrowExceptionOnEmptyFilesList
|
||||||
|
A switch which'll throw an exception upon not finding any files inside the provided 'WorkingDir'.
|
||||||
|
|
||||||
|
.PARAMETER SkipExcludedFilesValidation
|
||||||
|
A switch to stop file path validation on 'ExcludedFiles' list.
|
||||||
|
|
||||||
|
.PARAMETER ExcludedFiles
|
||||||
|
A list of file paths which're *relative to* 'WorkingDir' Folder, every item in the list can be pointing to File (doesn't end with '\') or Directory (ends with '\') or None-Existing File/Directory.
|
||||||
|
By default, it checks if everyitem exists, and throws an exception if one or more are not found (None-Existing), if you want to skip this validation, please consider providing the '-SkipExcludedFilesValidation' switch to skip this check.
|
||||||
|
|
||||||
|
.PARAMETER WorkingDir
|
||||||
|
The folder to search inside recursively for files which're going to be Preprocessed (Code Formatted), unless they're found in 'ExcludedFiles' List.
|
||||||
|
Note: The path should be absolute, NOT relative.
|
||||||
|
|
||||||
|
.PARAMETER ProgressStatusMessage
|
||||||
|
The status message used when displaying the progress bar, which's done through PowerShell 'Write-Progress' Cmdlet.
|
||||||
|
This's a Required Parameter, as the information displayed to terminal is useful when running this function,
|
||||||
|
which might take less than 1 sec to minutes depending on project's scale & hardware performance.
|
||||||
|
|
||||||
|
.PARAMETER ProgressActivity
|
||||||
|
The activity message used when displaying the progress bar, which's done through PowerShell 'Write-Progress' Cmdlet,
|
||||||
|
This's an Optional Parameter, default value is 'Preprocessing', used in combination with 'ProgressStatusMessage' Parameter Value.
|
||||||
|
|
||||||
|
.EXAMPLE
|
||||||
|
Invoke-Preprocessing -WorkingDir "DRIVE:\Path\To\Folder\" -ExcludedFiles @('file.txt', '.\.git\', '*.png') -ProgressStatusMessage "Doing Preprocessing"
|
||||||
|
|
||||||
|
Calls 'Invoke-Preprocessing' function using Named Paramters, with 'WorkingDir' (Mandatory Parameter) which's used as the base folder when searching for files recursively (using 'Get-ChildItem'), other two paramters are, in order from right to left, the Optional 'ExcludeFiles', which can be a path to a file, folder, or pattern-matched (like '*.png'), and the 'ProgressStatusMessage', which's used in Progress Bar.
|
||||||
|
|
||||||
|
.EXAMPLE
|
||||||
|
Invoke-Preprocessing -WorkingDir "DRIVE:\Path\To\Folder\" -ExcludedFiles @('file.txt', '.\.git\', '*.png') -ProgressStatusMessage "Doing Preprocessing" -ProgressActivity "Re-Formatting Code"
|
||||||
|
|
||||||
|
Same as Example No. 1, but uses 'ProgressActivity' which's used in Progress Bar.
|
||||||
|
|
||||||
|
.EXAMPLE
|
||||||
|
Invoke-Preprocessing -ThrowExceptionOnEmptyFilesList -WorkingDir "DRIVE:\Path\To\Folder\" -ExcludedFiles @('file.txt', '.\.git\', '*.png') -ProgressStatusMessage "Doing Preprocessing"
|
||||||
|
|
||||||
|
Same as Example No. 1, but will throw an exception when 'Invoke-Preprocessing' function doesn't find any files in 'WorkingDir' (not including 'ExcludedFiles' list).
|
||||||
|
|
||||||
|
.EXAMPLE
|
||||||
|
Invoke-Preprocessing -Skip -WorkingDir "DRIVE:\Path\To\Folder\" -ExcludedFiles @('file.txt', '.\.git\', '*.png') -ProgressStatusMessage "Doing Preprocessing"
|
||||||
|
|
||||||
|
Same as Example No. 1, but uses '-SkipExcludedFilesValidation', which'll skip the validation step for 'ExcludedFiles' list. This can be useful when 'ExcludedFiles' list is generated from another function, or from unreliable source (you can't guarantee every item in list is a valid path), but you want to silently continue through the function.
|
||||||
|
#>
|
||||||
|
|
||||||
|
param (
|
||||||
|
[Parameter(position=0)]
|
||||||
|
[switch]$SkipExcludedFilesValidation,
|
||||||
|
|
||||||
|
[Parameter(position=1)]
|
||||||
|
[switch]$ThrowExceptionOnEmptyFilesList,
|
||||||
|
|
||||||
|
[Parameter(Mandatory, position=2)]
|
||||||
|
[ValidateScript({[System.IO.Path]::IsPathRooted($_)})]
|
||||||
|
[string]$WorkingDir,
|
||||||
|
|
||||||
|
[Parameter(position=3)]
|
||||||
|
[string[]]$ExcludedFiles,
|
||||||
|
|
||||||
|
[Parameter(Mandatory, position=4)]
|
||||||
|
[string]$ProgressStatusMessage,
|
||||||
|
|
||||||
|
[Parameter(position=5)]
|
||||||
|
[string]$ProgressActivity = "Preprocessing"
|
||||||
|
)
|
||||||
|
|
||||||
|
if (-NOT (Test-Path -PathType Container -Path "$WorkingDir")) {
|
||||||
|
throw "[Invoke-Preprocessing] Invalid Paramter Value for 'WorkingDir', passed value: '$WorkingDir'. Either the path is a File or Non-Existing/Invlid, please double check your code."
|
||||||
|
}
|
||||||
|
|
||||||
|
$count = $ExcludedFiles.Count
|
||||||
|
if ((-NOT ($count -eq 0)) -AND (-NOT $SkipExcludedFilesValidation)) {
|
||||||
|
for ($i = 0; $i -lt $count; $i++) {
|
||||||
|
$excludedFile = $ExcludedFiles[$i]
|
||||||
|
$filePath = "$(($WorkingDir -replace ('\\$', '')) + '\' + ($excludedFile -replace ('\.\\', '')))"
|
||||||
|
if (-NOT (Get-ChildItem -Recurse -Path "$filePath" -File)) {
|
||||||
|
$failedFilesList += "'$filePath', "
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$failedFilesList = $failedFilesList -replace (',\s*$', '')
|
||||||
|
if (-NOT $failedFilesList -eq "") {
|
||||||
|
throw "[Invoke-Preprocessing] One or more File Paths & File Patterns were not found, you can use '-SkipExcludedFilesValidation' switch to skip this check, and the failed files are: $failedFilesList"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$files = Get-ChildItem $WorkingDir -Recurse -Exclude $ExcludedFiles -File
|
||||||
|
$numOfFiles = $files.Count
|
||||||
|
|
||||||
|
if ($numOfFiles -eq 0) {
|
||||||
|
if ($ThrowExceptionOnEmptyFilesList) {
|
||||||
|
throw "[Invoke-Preprocessing] Found 0 Files to Preprocess inside 'WorkingDir' Directory and '-ThrowExceptionOnEmptyFilesList' Switch is provided, value of 'WorkingDir': '$WorkingDir'."
|
||||||
|
} else {
|
||||||
|
return # Do an early return, there's nothing else to do
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for ($i = 0; $i -lt $numOfFiles; $i++) {
|
||||||
|
$file = $files[$i]
|
||||||
|
|
||||||
|
# If the file is in Exclude List, don't proceed to check/modify said file.
|
||||||
|
$fileIsExcluded = $False
|
||||||
|
for ($j = 0; $j -lt $excludedFiles.Count; $j++) {
|
||||||
|
$excluded = $excludedFiles[$j]
|
||||||
|
$strToCompare = ($excluded) -replace ('^\.\\', '')
|
||||||
|
if ($file.FullName.Contains("$strToCompare")) {
|
||||||
|
$fileIsExcluded = $True
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($fileIsExcluded) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
# TODO:
|
||||||
|
# make more formatting rules, and document them in WinUtil Official Documentation
|
||||||
|
(Get-Content "$file").TrimEnd() `
|
||||||
|
-replace ('\t', ' ') `
|
||||||
|
-replace ('\)\s*\{', ') {') `
|
||||||
|
-replace ('(?<keyword>if|for|foreach)\s*(?<condition>\([.*?]\))\s*\{', '${keyword} ${condition} {') `
|
||||||
|
-replace ('\}\s*elseif\s*(?<condition>\([.*?]\))\s*\{', '} elseif ${condition} {') `
|
||||||
|
-replace ('\}\s*else\s*\{', '} else {') `
|
||||||
|
-replace ('Try\s*\{', 'try {') `
|
||||||
|
-replace ('Catch\s*\{', 'catch {') `
|
||||||
|
-replace ('\}\s*Catch', '} catch') `
|
||||||
|
-replace ('\}\s*Catch\s*(?<exceptions>(\[.*?\]\s*(\,)?\s*)+)\s*\{', '} catch ${exceptions} {') `
|
||||||
|
-replace ('\}\s*Catch\s*(?<exceptions>\[.*?\])\s*\{', '} catch ${exceptions} {') `
|
||||||
|
-replace ('(?<parameter_type>\[.*?\])\s*(?<str_after_type>\$.*?(,|\s*\)))', '${parameter_type}${str_after_type}') `
|
||||||
|
| Set-Content "$file"
|
||||||
|
|
||||||
|
Write-Progress -Activity $ProgressActivity -Status "$ProgressStatusMessage - Finished $i out of $numOfFiles" -PercentComplete (($i/$numOfFiles)*100)
|
||||||
|
}
|
||||||
|
|
||||||
|
Write-Progress -Activity $ProgressActivity -Status "$ProgressStatusMessage - Finished Task Successfully" -Completed
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user