Skip to content

Commit

Permalink
Merge branch 'microsoft:arcbox_3.0' into arcbox_3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sebassem authored Aug 1, 2024
2 parents 3436543 + 81c405d commit f501b67
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions azure_jumpstart_arcbox/artifacts/ArcServersLogonScript.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,14 @@ $Shortcut.TargetPath = $WinTerminalPath
$shortcut.WindowStyle = 3
$shortcut.Save()

# Create desktop shortcut for Logs-folder
$WshShell = New-Object -comObject WScript.Shell
$LogsPath = "C:\ArcBox\Logs"
$Shortcut = $WshShell.CreateShortcut("$Env:USERPROFILE\Desktop\Logs.lnk")
$Shortcut.TargetPath = $LogsPath
$shortcut.WindowStyle = 3
$shortcut.Save()

# Configure Windows Terminal as the default terminal application
$registryPath = "HKCU:\Console\%%Startup"

Expand Down

0 comments on commit f501b67

Please sign in to comment.