Set default programs before creating user
This commit is contained in:
parent
e86657858a
commit
f135727dc2
4 changed files with 5 additions and 20 deletions
|
@ -90,6 +90,7 @@ function Restore-PersonalApps([Context] $context) {
|
|||
gpu-z `
|
||||
windirstat `
|
||||
winmerge `
|
||||
winscp `
|
||||
xmedia-recode `
|
||||
hwmonitor `
|
||||
qbittorrent `
|
||||
|
@ -97,10 +98,8 @@ function Restore-PersonalApps([Context] $context) {
|
|||
inkscape `
|
||||
krita `
|
||||
obs-studio `
|
||||
openvpn;
|
||||
|
||||
. "$PSScriptRoot/../Software/WinSCP/Install.ps1" $context;
|
||||
. "$PSScriptRoot/../Software/Thunderbird/Install.ps1" $context;
|
||||
openvpn `
|
||||
thunderbird;
|
||||
|
||||
$context.RemoveDesktopIcon("GPU-Z*");
|
||||
$context.RemoveDesktopIcon("WinDirStat*");
|
||||
|
|
|
@ -16,6 +16,8 @@ function Invoke-WindowsInstallation([Context] $context)
|
|||
. "$configPath/Explorer/Install.ps1" $context;
|
||||
. "$configPath/OpenSSH/Install.ps1" $context;
|
||||
. "$configPath/chocolatey/Install.ps1";
|
||||
. "$configPath/WinSCP/Install.ps1" $context;
|
||||
. "$configPath/Thunderbird/Install.ps1" $context;
|
||||
|
||||
$context.RemoveDesktopIcon("*Microsoft Edge*");
|
||||
$context.Set("InitialConfiguration", 1, "DWord");
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
#!/bin/pwsh
|
||||
param($context)
|
||||
|
||||
. "$PSScriptRoot/../../Scripts/Context.ps1";
|
||||
[Context] $context = $context;
|
||||
|
||||
choco install -y thunderbird;
|
||||
. "$PSScriptRoot/../../Config/Thunderbird/Install.ps1" $context;
|
|
@ -1,8 +0,0 @@
|
|||
#!/bin/pwsh
|
||||
param($context);
|
||||
|
||||
. "$PSScriptRoot/../../Scripts/Context.ps1";
|
||||
[Context] $context = $context;
|
||||
|
||||
choco install -y winscp;
|
||||
. "$PSScriptRoot/../../Config/WinSCP/Install.ps1" $context;
|
Loading…
Reference in a new issue