2023-07-12 20:37:31 +00:00
|
|
|
#!/bin/pwsh
|
2023-06-06 22:56:29 +00:00
|
|
|
class Context {
|
2023-06-21 20:04:18 +00:00
|
|
|
[string]$EntryPoint;
|
2023-06-16 18:24:37 +00:00
|
|
|
[string]$RootDir;
|
2023-06-06 22:56:29 +00:00
|
|
|
[string]$BackupName;
|
2023-06-22 20:56:43 +00:00
|
|
|
[string]$UserName;
|
2023-06-22 21:04:13 +00:00
|
|
|
[string]$AdminName = "Admin";
|
2023-06-29 17:03:31 +00:00
|
|
|
[string]$ConfigRoot = "HKLM:\Software\PortValhalla";
|
2023-06-23 18:08:31 +00:00
|
|
|
[string]$RunOnceName = "PortValhalla";
|
2023-06-29 17:08:05 +00:00
|
|
|
[string]$StagePropertyName = "Stage";
|
2023-06-29 17:03:31 +00:00
|
|
|
|
|
|
|
[string] ProjectRoot() {
|
|
|
|
return Resolve-Path (Join-Path $PSScriptRoot ".." ".." "..");
|
|
|
|
}
|
|
|
|
|
2023-06-06 22:56:29 +00:00
|
|
|
[string] BackupRoot() {
|
2023-06-16 18:24:37 +00:00
|
|
|
if (-not $this.RootDir)
|
|
|
|
{
|
2023-06-29 17:03:31 +00:00
|
|
|
return Join-Path $this.ProjectRoot() $this.BackupName;
|
2023-06-16 18:24:37 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return $this.RootDir;
|
|
|
|
}
|
2023-06-06 22:56:29 +00:00
|
|
|
}
|
|
|
|
|
2023-06-29 17:03:31 +00:00
|
|
|
[Microsoft.Win32.RegistryKey] EnsureConfigKey() {
|
|
|
|
if (-not (Test-Path $this.ConfigRoot)) {
|
2023-06-29 17:11:41 +00:00
|
|
|
$null = New-Item $this.ConfigRoot;
|
2023-06-29 18:02:12 +00:00
|
|
|
$acl = Get-Acl $this.ConfigRoot;
|
|
|
|
|
|
|
|
$acl.AddAccessRule(
|
|
|
|
[System.Security.AccessControl.RegistryAccessRule]::new(
|
2023-06-29 22:55:42 +00:00
|
|
|
[System.Security.Principal.SecurityIdentifier]::new([System.Security.Principal.WellKnownSidType]::BuiltinUsersSid, $null),
|
2023-06-29 18:02:12 +00:00
|
|
|
[System.Security.AccessControl.RegistryRights]::FullControl,
|
|
|
|
[System.Security.AccessControl.InheritanceFlags]::ObjectInherit -bor [System.Security.AccessControl.InheritanceFlags]::ContainerInherit,
|
|
|
|
[System.Security.AccessControl.PropagationFlags]::None,
|
|
|
|
[System.Security.AccessControl.AccessControlType]::Allow));
|
2023-06-29 23:57:45 +00:00
|
|
|
|
|
|
|
Set-Acl $this.ConfigRoot $acl;
|
2023-06-29 17:03:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return Get-Item $this.ConfigRoot;
|
|
|
|
}
|
|
|
|
|
|
|
|
[object] Get([string] $key) {
|
|
|
|
$configKey = $this.EnsureConfigKey();
|
|
|
|
if ($configKey.GetValueNames().Contains($key)) {
|
|
|
|
return $configKey.GetValue($key);
|
|
|
|
} else {
|
|
|
|
return $null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-29 17:11:16 +00:00
|
|
|
[void] Set([string] $key, $value, [Microsoft.Win32.RegistryValueKind] $type) {
|
|
|
|
$configKey = $this.EnsureConfigKey();
|
2023-06-30 00:40:15 +00:00
|
|
|
$null = Set-ItemProperty -Path $configKey.PSPath -Name $key -Value $value -Type $type;
|
2023-06-29 17:11:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
[void] Remove([string] $key) {
|
|
|
|
$configKey = $this.EnsureConfigKey();
|
2023-06-30 02:34:40 +00:00
|
|
|
$null = Remove-ItemProperty -Path $configKey.PSPath -Name $key;
|
2023-06-29 17:11:16 +00:00
|
|
|
}
|
|
|
|
|
2023-06-29 17:08:05 +00:00
|
|
|
[void] SetStage([string] $name) {
|
|
|
|
$this.Set($this.StagePropertyName, $name, "ExpandString");
|
|
|
|
}
|
|
|
|
|
|
|
|
[string] GetStage() {
|
|
|
|
return $this.Get($this.StagePropertyName);
|
|
|
|
}
|
|
|
|
|
2023-06-29 17:13:17 +00:00
|
|
|
[void] RemoveStage() {
|
|
|
|
$this.Remove($this.StagePropertyName);
|
|
|
|
}
|
|
|
|
|
2023-06-06 22:56:29 +00:00
|
|
|
[string] ArchivePath($name) {
|
|
|
|
return Join-Path $this.BackupRoot() "$name.7z";
|
|
|
|
}
|
|
|
|
|
|
|
|
[string] FileArchivePath($name) {
|
|
|
|
return $this.ArchivePath($(Join-Path "Files" $name));
|
|
|
|
}
|
|
|
|
|
|
|
|
[string] SoftwareArchive([string]$softwareName) {
|
|
|
|
return $this.ArchivePath($softwareName);
|
|
|
|
}
|
2023-06-06 23:32:14 +00:00
|
|
|
|
|
|
|
[void] Backup([string]$sourcePath, [string]$archivePath, [string[]]$arguments) {
|
|
|
|
if (Test-Path $archivePath) {
|
|
|
|
Remove-Item -Recurse $archivePath;
|
|
|
|
}
|
|
|
|
|
|
|
|
Start-Process -WorkingDirectory "$sourcePath" `
|
|
|
|
-FilePath "7z" `
|
|
|
|
-ArgumentList (
|
|
|
|
@(
|
|
|
|
"a",
|
|
|
|
"-xr!desktop.ini",
|
2023-06-09 16:21:26 +00:00
|
|
|
"-xr!thumbs.db",
|
|
|
|
"-xr!Thumbs.db",
|
2023-06-06 23:32:14 +00:00
|
|
|
$archivePath) + $arguments) `
|
|
|
|
-Wait `
|
|
|
|
-NoNewWindow;
|
|
|
|
}
|
2023-06-16 18:24:22 +00:00
|
|
|
|
|
|
|
[void] Restore([string]$archivePath, [string]$destinationPath) {
|
2023-06-30 12:15:48 +00:00
|
|
|
if (-not (Test-Path -PathType Leaf $archivePath)) {
|
|
|
|
Write-Information (
|
|
|
|
[string]::Join(
|
|
|
|
"`n",
|
|
|
|
@(
|
|
|
|
"An archive at the specified path $archivePath does not exist.",
|
|
|
|
"No restoration will be performed.")));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (-not (Test-Path -PathType Container $destinationPath)) {
|
|
|
|
New-Item -ItemType Directory "$destinationPath";
|
|
|
|
}
|
|
|
|
|
|
|
|
Start-Process -WorkingDirectory "$destinationPath" `
|
|
|
|
-FilePath "7z"
|
|
|
|
-ArgumentList "x" `
|
|
|
|
-Wait `
|
|
|
|
-NoNewWindow;
|
2023-06-16 18:24:22 +00:00
|
|
|
}
|
|
|
|
}
|
2023-06-16 18:25:43 +00:00
|
|
|
|
|
|
|
[string] GetTempDirectory() {
|
|
|
|
$tempDir = Join-Path $([System.IO.Path]::GetTempPath()) $([System.IO.Path]::GetRandomFileName());
|
|
|
|
$null = New-Item -ItemType Directory $tempDir;
|
|
|
|
return $tempDir;
|
|
|
|
}
|
2023-06-22 20:58:54 +00:00
|
|
|
|
2023-06-23 18:08:31 +00:00
|
|
|
[void] ProcessDefaultUserKey([System.Action[Microsoft.Win32.RegistryKey]] $action) {
|
2023-06-28 11:40:56 +00:00
|
|
|
$rootPath = "HKLM:\DefaultUser";
|
|
|
|
$regRootPath = $rootPath.Replace(":", "");
|
2023-06-25 15:57:23 +00:00
|
|
|
$hivePath = "$env:SystemDrive\Users\Default\NTUSER.dat"
|
2023-06-28 11:40:56 +00:00
|
|
|
$null = & reg load $regRootPath $hivePath;
|
|
|
|
$root = Get-Item $rootPath;
|
|
|
|
$action.Invoke($root);
|
|
|
|
$root.Handle.Close();
|
|
|
|
[System.GC]::Collect();
|
|
|
|
& reg unload $regRootPath;
|
2023-06-23 18:08:31 +00:00
|
|
|
}
|
|
|
|
|
2023-06-25 16:25:52 +00:00
|
|
|
[void] ProcessLogonKey([System.Action[Microsoft.Win32.RegistryKey]] $action) {
|
|
|
|
$key = Get-Item "HKLM:\Software\Microsoft\Windows NT\CurrentVersion\Winlogon";
|
|
|
|
$action.Invoke($key);
|
|
|
|
}
|
|
|
|
|
2023-07-03 11:44:51 +00:00
|
|
|
[Microsoft.Win32.RegistryKey] GetSystemPolicyKey() {
|
|
|
|
$keyPath = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System";
|
|
|
|
return Get-Item "$keyPath";
|
|
|
|
}
|
|
|
|
|
2023-06-25 13:36:58 +00:00
|
|
|
[Microsoft.Win32.RegistryKey] GetRunOnceKey() {
|
|
|
|
return $this.GetRunOnceKey($null);
|
|
|
|
}
|
|
|
|
|
2023-06-23 18:08:31 +00:00
|
|
|
[Microsoft.Win32.RegistryKey] GetRunOnceKey([Microsoft.Win32.RegistryKey] $userKey) {
|
|
|
|
if (-not $userKey) {
|
|
|
|
$userKey = Get-Item "HKCU:\";
|
|
|
|
}
|
|
|
|
|
2023-06-25 14:33:04 +00:00
|
|
|
Push-Location $userKey.PSPath;
|
2023-06-25 16:05:55 +00:00
|
|
|
$runOncePath = "Software\Microsoft\Windows\CurrentVersion\RunOnce";
|
|
|
|
|
|
|
|
if (-not (Test-Path $runOncePath)) {
|
|
|
|
New-Item $runOncePath;
|
|
|
|
}
|
|
|
|
|
|
|
|
$result = Get-Item $runOncePath;
|
2023-06-25 14:28:12 +00:00
|
|
|
Pop-Location;
|
2023-06-25 14:54:10 +00:00
|
|
|
return $result;
|
2023-06-23 18:08:31 +00:00
|
|
|
}
|
|
|
|
|
2023-07-03 11:44:51 +00:00
|
|
|
[bool] GetUACState() {
|
|
|
|
return [bool](Get-ItemPropertyValue -Path ($this.GetSystemPolicyKey().PSPath) -Name "EnableLUA");
|
|
|
|
}
|
|
|
|
|
|
|
|
[void] SetUACState([bool] $value) {
|
2023-07-10 19:22:31 +00:00
|
|
|
$null = Set-ItemProperty -Path ($this.GetSystemPolicyKey().PSPath) -Name "EnableLUA" -Value ([int]$value);
|
2023-07-03 11:44:51 +00:00
|
|
|
}
|
|
|
|
|
2023-06-25 13:36:58 +00:00
|
|
|
[void] RegisterReboot() {
|
|
|
|
$this.RegisterReboot($null);
|
|
|
|
}
|
|
|
|
|
|
|
|
[void] RegisterReboot([Microsoft.Win32.RegistryKey] $userKey) {
|
2023-06-28 11:40:56 +00:00
|
|
|
$runOnceKey = $this.GetRunOnceKey($userKey);
|
2023-06-28 11:43:20 +00:00
|
|
|
Set-ItemProperty -Path $runOnceKey.PSPath -Name $this.RunOnceName -Value "pwsh `"$($this.EntryPoint)`"" -Type "ExpandString";
|
2023-06-28 11:40:56 +00:00
|
|
|
$runOnceKey.Handle.Close();
|
2023-06-23 18:08:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
[void] RegisterNewUserReboot() {
|
|
|
|
$this.ProcessDefaultUserKey({ param ($root) $this.RegisterReboot($root); });
|
|
|
|
}
|
|
|
|
|
|
|
|
[void] DeregisterNewUserReboot() {
|
2023-06-25 16:10:23 +00:00
|
|
|
$this.ProcessDefaultUserKey({ param ($root) Remove-Item -Path $this.GetRunOnceKey($root).PSPath });
|
2023-06-23 18:08:31 +00:00
|
|
|
}
|
|
|
|
|
2023-06-25 16:25:52 +00:00
|
|
|
[void] SetAutologin($user, $pw) {
|
|
|
|
$this.ProcessLogonKey(
|
|
|
|
{
|
|
|
|
param ($logon)
|
|
|
|
$path = $logon.PSPath;
|
|
|
|
Set-ItemProperty $path -Name "AutoAdminLogon" 1;
|
|
|
|
Set-ItemProperty $path -Name "DefaultUserName" $user;
|
|
|
|
|
2023-06-30 02:47:31 +00:00
|
|
|
if ($pw) {
|
|
|
|
Set-ItemProperty $path -Name "DefaultPassword" $pw;
|
2023-06-25 16:25:52 +00:00
|
|
|
} else {
|
|
|
|
Remove-ItemProperty $path -Name "DefaultPassword";
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
[void] RemoveAutologin() {
|
|
|
|
$this.ProcessLogonKey(
|
|
|
|
{
|
|
|
|
param ($logon)
|
|
|
|
$path = $logon.PSPath;
|
2023-06-25 16:48:13 +00:00
|
|
|
Set-ItemProperty $path -Name "AutoAdminLogon" 0;
|
2023-07-02 23:14:34 +00:00
|
|
|
Remove-ItemProperty $path -Name "DefaultDomainName" -ErrorAction SilentlyContinue;
|
|
|
|
Remove-ItemProperty $path -Name "DefaultUserName" -ErrorAction SilentlyContinue;
|
|
|
|
Remove-ItemProperty $path -Name "DefaultPassword" -ErrorAction SilentlyContinue;
|
2023-06-25 16:25:52 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-06-30 11:17:00 +00:00
|
|
|
[string] GetNextcloudConfigFile() {
|
|
|
|
return "$env:APPDATA/Nextcloud/nextcloud.cfg";
|
|
|
|
}
|
|
|
|
|
2023-07-02 13:44:47 +00:00
|
|
|
[void] AddNextcloudSync([string] $localPath, [string] $targetPath) {
|
|
|
|
$this.AddNextcloudSync($localPath, $targetPath, $false);
|
|
|
|
}
|
|
|
|
|
|
|
|
[void] AddNextcloudSync([string] $localPath, [string] $targetPath, [bool] $virtualFiles) {
|
2023-07-02 15:38:44 +00:00
|
|
|
$pattern = "^\d+\\Folders(?:WithPlaceholders)?\\(\d+)";
|
2023-07-02 13:44:47 +00:00
|
|
|
|
|
|
|
$folderID = (
|
|
|
|
Get-Content $($this.GetNextcloudConfigFile()) | `
|
|
|
|
Where-Object { $_ -match "$pattern" } | `
|
|
|
|
ForEach-Object { $_ -replace "$pattern.*$","`$1" } | `
|
|
|
|
Sort-Object -Unique | `
|
|
|
|
Measure-Object -Maximum).Maximum + 1;
|
|
|
|
|
2023-07-02 18:45:25 +00:00
|
|
|
$configName = "Folders";
|
2023-07-02 19:49:00 +00:00
|
|
|
$localPath = $localPath.Replace("\", "/");
|
|
|
|
$targetPath = $targetPath.Replace("\", "/");
|
2023-07-02 13:44:47 +00:00
|
|
|
|
2023-07-02 18:45:25 +00:00
|
|
|
if ($virtualFiles) {
|
|
|
|
$configName += "WithPlaceholders";
|
|
|
|
}
|
|
|
|
|
2023-07-02 22:59:11 +00:00
|
|
|
$nextcloudProcess = Get-Process nextcloud;
|
2023-07-03 20:54:30 +00:00
|
|
|
$nextcloudPath = [string]$nextcloudProcess[0].Path;
|
2023-07-02 22:59:11 +00:00
|
|
|
$nextcloudProcess | Stop-Process -Force;
|
|
|
|
|
2023-07-02 22:47:21 +00:00
|
|
|
$accountSectionEntered = $false;
|
|
|
|
|
2023-07-02 22:58:21 +00:00
|
|
|
(Get-Content $($this.GetNextcloudConfigFile())) | `
|
2023-07-02 22:47:21 +00:00
|
|
|
ForEach-Object {
|
|
|
|
if ($_ -eq "[Accounts]") {
|
|
|
|
$accountSectionEntered = $true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($_ -eq "" -and $accountSectionEntered) {
|
2023-07-02 22:58:21 +00:00
|
|
|
[string]::Join(
|
|
|
|
"`n",
|
|
|
|
@(
|
|
|
|
"0\$configName\$folderID\localPath=$localPath",
|
2023-07-02 22:47:21 +00:00
|
|
|
"0\$configName\$folderID\targetPath=$targetPath"));
|
|
|
|
}
|
|
|
|
|
|
|
|
$_;
|
|
|
|
} | Set-Content $this.GetNextcloudConfigFile();
|
2023-07-02 15:38:44 +00:00
|
|
|
|
|
|
|
Start-Process $nextcloudPath;
|
2023-07-02 13:44:47 +00:00
|
|
|
}
|
|
|
|
|
2023-06-22 20:58:54 +00:00
|
|
|
[void] Reboot() {
|
|
|
|
Write-Host "Restarting Computer...";
|
2023-06-23 18:08:31 +00:00
|
|
|
$this.RegisterReboot();
|
2023-06-22 20:58:54 +00:00
|
|
|
Restart-Computer;
|
2023-06-25 16:11:56 +00:00
|
|
|
exit;
|
2023-06-22 20:58:54 +00:00
|
|
|
}
|
2023-07-03 11:24:36 +00:00
|
|
|
|
|
|
|
[void] Cleanup() {
|
|
|
|
$this.DeregisterNewUserReboot();
|
|
|
|
$this.RemoveAutologin();
|
2023-07-03 12:35:16 +00:00
|
|
|
$this.SetUACState($true);
|
2023-07-03 11:24:36 +00:00
|
|
|
Remove-Item $($this.EnsureConfigKey().PSPath);
|
|
|
|
}
|
2023-06-06 22:56:29 +00:00
|
|
|
}
|