summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/incidental_win_reboot/templates/post_reboot.ps1
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/incidental_win_reboot/templates/post_reboot.ps1')
-rw-r--r--test/integration/targets/incidental_win_reboot/templates/post_reboot.ps18
1 files changed, 8 insertions, 0 deletions
diff --git a/test/integration/targets/incidental_win_reboot/templates/post_reboot.ps1 b/test/integration/targets/incidental_win_reboot/templates/post_reboot.ps1
new file mode 100644
index 0000000..e4a99a7
--- /dev/null
+++ b/test/integration/targets/incidental_win_reboot/templates/post_reboot.ps1
@@ -0,0 +1,8 @@
+if (Test-Path -Path '{{win_output_dir}}\win_reboot_test') {
+ New-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager' `
+ -Name PendingFileRenameOperations `
+ -Value @("\??\{{win_output_dir}}\win_reboot_test`0") `
+ -PropertyType MultiString
+ Restart-Computer -Force
+ exit 1
+}