Skip to content

Commit

Permalink
Add wallpapers & pwsh config to smb script
Browse files Browse the repository at this point in the history
Move items to smb script since they will require credentials for the shares
  • Loading branch information
GTXFerrari committed Sep 3, 2024
1 parent 5c3ebc8 commit d36ffd1
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion Windows/Scripts/smb.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,14 @@ $sh.NameSpace('X:').Self.Name = 'Stash'
$sh.NameSpace('W:').Self.Name = 'Stash2'
$sh.NameSpace('V:').Self.Name = 'Gold'
$sh.NameSpace('U:').Self.Name = 'ISO'
$sh.NameSpace('T:').Self.Name = 'Photos'
$sh.NameSpace('T:').Self.Name = 'Photos'

# Wallpapers
New-Item -ItemType Directory $env:USERPROFILE\Pictures\Wallpapers
robocopy /V /ETA /E \\10.0.40.5\Jake\Assets\Wallpapers\3440x1440 $env:USERPROFILE\Pictures\Wallpapers\

# Powershell
Install-Module PSWindowsUpdate
Install-Module -Name Terminal-Icons -Repository PSGallery
Install-Script winfetch
Copy-Item \\10.0.40.5\Jake\Backups\Powershell\Microsoft.PowerShell_profile.ps1 $env:USERPROFILE\Documents\PowerShell\

0 comments on commit d36ffd1

Please sign in to comment.