-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMicrosoft.PowerShell_5.1_profile.ps1
More file actions
450 lines (376 loc) · 13.2 KB
/
Copy pathMicrosoft.PowerShell_5.1_profile.ps1
File metadata and controls
450 lines (376 loc) · 13.2 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
# ============================================================
# PowerShell Profile - Compatible with Windows PowerShell 5.1
# ============================================================
# This profile works in both PowerShell 5.1 and PowerShell 7+
# Save to: $HOME\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1
# Ensure profile exists
if (-not (Test-Path -Path $PROFILE)) {
New-Item -ItemType File -Path $PROFILE -Force | Out-Null
}
# ============================================================
# FUNCTION: EmptyRecycleBin
# ============================================================
function EmptyRecycleBin {
[CmdletBinding()]
param(
[switch]$WhatIf
)
# Try the supported cmdlet first
if (Get-Command -Name Clear-RecycleBin -ErrorAction SilentlyContinue) {
if ($WhatIf) {
Write-Output "Preview: Clear-RecycleBin -Confirm:`$false -WhatIf"
Clear-RecycleBin -Confirm:$false -WhatIf
}
else {
Write-Output "Running Clear-RecycleBin for current user..."
Clear-RecycleBin -Confirm:$false -Force
}
}
else {
Write-Output "Clear-RecycleBin not available in this session; skipping to force removal."
}
# If user asked for force removal or if items remain, enumerate drives and remove $Recycle.Bin contents
Write-Output "Enumerating drives for `$Recycle.Bin folders..."
$drives = Get-PSDrive -PSProvider FileSystem | Select-Object -ExpandProperty Root
foreach ($root in $drives) {
$rbPath = Join-Path -Path $root -ChildPath '$Recycle.Bin'
if (Test-Path $rbPath) {
Write-Output "Found: $rbPath"
if ($WhatIf) {
Get-ChildItem -Path $rbPath -Force -ErrorAction SilentlyContinue | Remove-Item -Recurse -Force -WhatIf
}
else {
try {
# Attempt to take ownership and grant Administrators full control (may require elevation)
takeown.exe /f $rbPath /r /d y | Out-Null
icacls.exe $rbPath /grant Administrators:F /t | Out-Null
}
catch {
# ignore ownership errors and continue
}
Get-ChildItem -Path $rbPath -Force -ErrorAction SilentlyContinue | Remove-Item -Recurse -Force -ErrorAction SilentlyContinue
}
}
}
Write-Output "Done. If some items remain, try running PowerShell as Administrator and re-run this command."
}
# ============================================================
# FUNCTION: OneDriveSecurity
# ============================================================
function OneDriveSecurity {
<#
.SYNOPSIS
Removes "Deny - Delete subfolders and files" ACL entries for Everyone
under specified OneDrive folders.
.DESCRIPTION
Iterates a list of folder paths, reports any Deny-Delete rules found,
attempts to remove them, re-enables inheritance, and verifies success.
#>
[CmdletBinding()]
param(
[string[]]$Folders = @(
"C:\OD\Cejesti",
"C:\OD\Cejesti\OneDrive",
"C:\OD\Erelyn",
"C:\OD\Erelyn\OneDrive",
"C:\OD\Jessica",
"C:\OD\Jessica\OneDrive",
"C:\OD\Lycia",
"C:\OD\Lycia\OneDrive",
"C:\OD\Rose",
"C:\OD\Rose\OneDrive"
)
)
foreach ($path in $Folders) {
Write-Output "Processing folder: $path"
if (-not (Test-Path $path)) {
Write-Warning " -> Path not found. Skipping."
continue
}
$acl = Get-Acl -Path $path
$denyRules = $acl.Access | Where-Object {
$_.IdentityReference -eq 'Everyone' -and
$_.FileSystemRights -match 'DeleteSubdirectoriesAndFiles' -and
$_.AccessControlType -eq 'Deny'
}
if ($denyRules.Count -eq 0) {
Write-Output " -> No Deny-Delete rules found."
}
else {
Write-Output " -> Found $($denyRules.Count) Deny-Delete rule(s). Attempting removal..."
foreach ($rule in $denyRules) {
$acl.RemoveAccessRule($rule)
}
# Preserve inherited rules and remove explicit protection
$acl.SetAccessRuleProtection($false, $true)
try {
Set-Acl -Path $path -AclObject $acl
# Verify
$newAcl = Get-Acl -Path $path
$stillDenied = $newAcl.Access | Where-Object {
$_.IdentityReference -eq 'Everyone' -and
$_.FileSystemRights -match 'DeleteSubdirectoriesAndFiles' -and
$_.AccessControlType -eq 'Deny'
}
if ($stillDenied.Count -eq 0) {
Write-Output " -> Successfully removed all Deny-Delete rules."
}
else {
Write-Warning " -> Removal attempted, but $($stillDenied.Count) rule(s) still present."
}
}
catch {
Write-Error " -> Error applying ACL: $_"
}
}
Write-Output "" # Blank line for readability
}
}
# ============================================================
# FUNCTION: OneDriveSize
# ============================================================
# Get OneDrive Total File Size
function OneDriveSize {
[CmdletBinding()]
param(
[string]$OneDrivePath = "C:\OD",
[string]$OneDriveTempPath = "C:\OneDriveTemp"
)
if (-not (Test-Path $OneDrivePath)) {
Write-Error "Cache path '$OneDrivePath' does not exist."
return
}
# ! Begin OneDrive File Size Check.
# Sum all file lengths under the cache directory
$totalBytes = Get-ChildItem -Path $OneDrivePath -Recurse -Force |
Where-Object { -not $_.PSIsContainer } |
Measure-Object -Property Length -Sum |
Select-Object -ExpandProperty Sum
if ($null -eq $totalBytes) {
Write-Output "No files found under '$OneDrivePath'."
return
}
# Convert to human-readable units
$OneDriveSizeGB = [math]::Round($totalBytes / 1GB, 2)
$OneDriveSizeMB = [math]::Round($totalBytes / 1MB, 2)
# Sum all file lengths under the cache directory
$totalBytes = Get-ChildItem -Path $OneDrivePath -Recurse -Force |
Where-Object { -not $_.PSIsContainer } |
Measure-Object -Property Length -Sum |
Select-Object -ExpandProperty Sum
if ($null -eq $totalBytes) {
Write-Output "No files found under '$OneDrivePath'."
return
}
# ! Begin OneDrive Temporary File Size Check.
# Convert to human-readable units
$OneDriveTempSizeGB = [math]::Round($totalBytes / 1GB, 2)
$OneDriveTempSizeMB = [math]::Round($totalBytes / 1MB, 2)
[PSCustomObject]@{
OneDrivePath = $OneDrivePath
OneDriveSizeMB = "$OneDriveSizeMB MB"
OneDriveSizeGB = "$OneDriveSizeGB GB"
OneDriveTempPath = $OneDriveTempPath
OneDriveTempSizeMB = "$OneDriveTempSizeMB MB"
OneDriveTempSizeGB = "$OneDriveTempSizeGB GB"
}
}
# ============================================================
# FUNCTION: GoogleDriveSize
# ============================================================
# Get Google Drive Total File Size
function GoogleDriveSize {
[CmdletBinding()]
param(
[string]$GoogleDrivePath = "E:\Google Drive",
[string]$GDriveTempFolderPath = "C:\Users\Jessica Murphy\AppData\Local\Google\DriveFS",
[string]$GoogleDriveStreamingPath = "E:\Google Drive\Streaming"
)
# ! Begin Google Drive File Size Check.
if (-not (Test-Path $GoogleDrivePath)) {
Write-Error "Cache path '$GoogleDrivePath' does not exist."
return
}
# Sum all file lengths under the cache directory
$totalBytes = Get-ChildItem -Path $GoogleDrivePath -Recurse -Force |
Where-Object { -not $_.PSIsContainer } |
Measure-Object -Property Length -Sum |
Select-Object -ExpandProperty Sum
if ($null -eq $totalBytes) {
Write-Output "No files found under '$GoogleDrivePath'."
return
}
# Convert to human-readable units
$GoogleDriveSizeGB = [math]::Round($totalBytes / 1GB, 2)
$GoogleDriveSizeMB = [math]::Round($totalBytes / 1MB, 2)
# ! Begin Google Drive Temporary File Size Check.
if (-not (Test-Path $GDriveTempFolderPath)) {
Write-Error "Cache path '$GDriveTempFolderPath' does not exist."
return
}
# Sum all file lengths under the GoogleDriveTemporaryFilesPath directory
$totalBytes = Get-ChildItem -Path $GDriveTempFolderPath -Recurse -Force |
Where-Object { -not $_.PSIsContainer } |
Measure-Object -Property Length -Sum |
Select-Object -ExpandProperty Sum
if ($null -eq $totalBytes) {
Write-Output "No files found under '$GDriveTempFolderPath'."
return
}
# Convert to human-readable units
$GoogleDriveTempSizeGB = [math]::Round($totalBytes / 1GB, 2)
$GoogleDriveTempSizeMB = [math]::Round($totalBytes / 1MB, 2)
# ! Begin Google Drive Streaming Cache File Size Check.
if (-not (Test-Path $GoogleDriveStreamingPath)) {
Write-Error "Cache path '$GoogleDriveStreamingPath' does not exist."
return
}
# Sum all file lengths under the cache directory
$totalBytes = Get-ChildItem -Path $GoogleDriveStreamingPath -Recurse -Force |
Where-Object { -not $_.PSIsContainer } |
Measure-Object -Property Length -Sum |
Select-Object -ExpandProperty Sum
if ($null -eq $totalBytes) {
Write-Output "No files found under '$GoogleDriveStreamingPath'."
return
}
# Convert to human-readable units
$GoogleDriveStreamingSizeGB = [math]::Round($totalBytes / 1GB, 2)
$GoogleDriveStreamingSizeMB = [math]::Round($totalBytes / 1MB, 2)
[PSCustomObject]@{
GoogleDrivePath = $GoogleDrivePath
GoogleDriveMB = "$GoogleDriveSizeMB MB"
GoogleDriveGB = "$GoogleDriveSizeGB GB"
GoogleDriveTempPath = $GDriveTempFolderPath
GoogleDriveTempMB = "$GoogleDriveTempSizeMB MB"
GoogleDriveTempGB = "$GoogleDriveTempSizeGB GB"
GoogleDriveStreamingPath = $GoogleDriveStreamingPath
GoogleDriveStreamingMB = "$GoogleDriveStreamingSizeMB MB"
GoogleDriveStreamingGB = "$GoogleDriveStreamingSizeGB GB"
}
}
# ============================================================
# FUNCTION: SymbolicLinks
# ============================================================
function SymbolicLinks {
[CmdletBinding()]
param(
[string]$Path = '.',
[switch]$Symbolic,
[switch]$Directory
)
$gciParams = @{
Path = $Path
Recurse = $true
Force = $true
Attributes = 'ReparsePoint'
ErrorAction = 'SilentlyContinue'
}
# Only add FollowSymlink parameter in PowerShell 7+
if ($PSVersionTable.PSVersion.Major -ge 7) {
$gciParams['FollowSymlink'] = $false
}
$items = Get-ChildItem @gciParams
if ($Symbolic) {
$items = $items | Where-Object { $_.LinkType -eq 'SymbolicLink' }
}
else {
if ($Directory) {
$items = $items | Where-Object { $_.LinkType -eq 'Directory' }
}
else {
$items = $items | Where-Object { $_.LinkType -in 'SymbolicLink', 'Directory' }
}
}
$items | Select-Object FullName, LinkType, Target
}
# Returns the current PowerShell version.
function PowerShellVersion {
$version = $PSVersionTable.PSVersion
Write-Output "PowerShell Version: $($version.Major).$($version.Minor).$($version.Build)"
}
function Functions {
$moduleName = $MyInvocation.MyCommand.Module.Name
Write-Output "Custom Functions Defined in module '$moduleName':"
Get-Command -CommandType Function -Module $moduleName | ForEach-Object { Write-Output " $($_.Name)" }
}
function Aliases {
$moduleName = $MyInvocation.MyCommand.Module.Name
Write-Output "`nCustom Aliases Defined in module '$moduleName':"
Get-Command -CommandType Alias -Module $moduleName | ForEach-Object { Write-Output " $($_.Name) -> $($_.Definition)" }
}
# Remove all attributes from a file or folder
function RemoveAllAttributes {
[CmdletBinding()]
param (
[Parameter(Mandatory = $true)]
[string]$Path
)
try {
if (-not (Test-Path -LiteralPath $Path)) {
throw "The specified path does not exist: $Path"
}
# Get the file or folder object
$item = Get-ChildItem -LiteralPath $Path -Recurse -Force
# Clear all attributes (set to 'Normal')
foreach ($attr in $item.Attributes) {
if ($attr -ne [System.IO.FileAttributes]::Normal) {
$item.Attributes = $item.Attributes -bor $attr
}
}
Write-Output "All attributes removed from: $Path"
}
catch {
Write-Output "Error: $_"
}
}
function InstallDrivers {
Set-Location "C:\OD\Jessica\OneDrive\Documents\PowerShell Scripts\Windows Troubleshooting"
./Windows-Driver-Installation.ps1
}
function SetEfficiencyModeSystemwide {
Set-Location "C:\OD\Jessica\OneDrive\Documents\PowerShell Scripts\Windows Troubleshooting"
./"Set-Efficiency-Mode-Systemwide.ps1" *> "Set-Efficiency-Mode-Systemwide-log.txt"
notepad "Set-Efficiency-Mode-Systemwide-log.txt"
}
function Windows.Old {
$Path = "C:\Windows.old"
if (Test-Path $Path) {
Write-Output "Taking ownership of $Path ..."
takeown /F $Path /A /R /D Y | Out-Null
Write-Output "Granting Administrators full control ..."
icacls $Path /grant Administrators:F /T /C | Out-Null
Write-Output "Removing attributes (read-only, system, hidden) ..."
Get-ChildItem -Path $Path -Recurse -Force | ForEach-Object {
try {
attrib -R -S -H $_.FullName
}
catch {}
}
Write-Output "Deleting folder..."
Remove-Item $Path -Recurse -Force -ErrorAction SilentlyContinue
if (-not (Test-Path $Path)) {
Write-Output "Windows.old successfully deleted."
}
else {
Write-Output "Some files could not be deleted. A reboot may be required."
}
}
else {
Write-Output "C:\Windows.old does not exist."
}
}
function ReloadProfile {
Clear-Host
. $profile
}
# ============================================================
# Aliases (exported so that Get-Alias shows this module as the source)
Set-Alias -Name Junctions -Value SymbolicLinks
Set-Alias -Name SymLinks -Value SymbolicLinks
Set-Alias -Name Version -Value PowerShellVersion
Set-Alias -Name About -Value PowerShellVersion
Set-Alias -Name SecurityReset -Value RemoveAllAttributes
Set-Alias -Name Reload -Value ReloadProfile
# ? Functions (Don't use this in old PowerShell versions that don't support Get-Alias -Module)
# ? Aliases (Don't use this in old PowerShell versions that don't support Get-Alias -Module)