-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDisableNewOutlook.ps1
44 lines (35 loc) · 1.65 KB
/
DisableNewOutlook.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
$user_sids = Get-ChildItem -Path Registry::HKU -ErrorAction silentlycontinue
Write-Host "-=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=-"
$systemSIDs = @(
"HKEY_USERS\.DEFAULT",
"HKEY_USERS\S-1-5-18", # Local System
"HKEY_USERS\S-1-5-19", # Local Service
"HKEY_USERS\S-1-5-20" # Network Service
)
$eligible_count = 0
$user_sids | ForEach-Object {
$user_sid = $_.Name
if ($systemSIDs -contains $user_sid -or $user_sid -like "*Classes") {
#Write-Host "Skipping:", $user_sid
return
}
$base_reg_path = "Registry::$user_sid\Software\Microsoft\Office\16.0\Outlook"
if (Test-Path -Path $base_reg_path) {
$eligible_count++
Write-Host "SID:", $user_sid, "Is eligble... Clearing"
if (Test-Path -Path "$base_reg_path\Preferences") {
Write-Host "Trying to create: $base_reg_path\Preferences"
New-ItemProperty -Path "$base_reg_path\Preferences" -Name "UseNewOutlook" -Value 0 -PropertyType DWORD
} else {
Write-Host "Failed to create DWORD in $base_reg_path\Preferences, Path does not exist."
}
if (Test-Path -Path "$base_reg_path\Options\General") {
Write-Host "Trying to create: $base_reg_path\Options\General"
New-ItemProperty -Path "$base_reg_path\Options\General" -Name "HideNewOutlookToggle" -Value 1 -PropertyType DWORD
} else {
Write-Host "Failed to create DWORD in $base_reg_path\Options\General, Path does not exist."
}
Write-Host "-=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=-"
}
}
Write-Host "Amount of new Outlooks disabled:", $eligible_count