You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Write-Output"Update-BitLockerRecovery.ps1 Version $scriptversion"
82
98
$ErrorActionPreference="Stop"
83
99
If (-NOT ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator))
This script is licensed under the GNU General Public License v3 (GPLv3), except for 3rd party code (e.g. Function Get-GPPolicyKey).
49
-
You can redistribute it and/or modify it under the terms of the GPLv3 as published by the Free Software Foundation.
50
-
This script is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
51
-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
52
-
See https://www.gnu.org/licenses/gpl-3.0.html for the full license text.
42
+
Author : Fabian Niesen (infrastrukturhelden.de)
43
+
Filename : get-GPOBackup.ps1
44
+
Requires : PowerShell Version 4.0
45
+
Version : 1.8
46
+
License : The MIT License (MIT)
47
+
Copyright (c) 2022-2025 Fabian Niesen
48
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation
49
+
files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify,
50
+
merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
51
+
furnished to do so, subject to the following conditions:
52
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
53
+
The Software is provided "as is", without warranty of any kind, express or implied, including but not limited to the warranties
54
+
of merchantability, fitness for a particular purpose and noninfringement. In no event shall the authors or copyright holders be
55
+
liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in
56
+
connection with the software or the use or other dealings in the Software.
57
+
Disclaimer : This script is provided "as is" without warranty. Use at your own risk.
58
+
The author assumes no responsibility for any damage or data loss caused by this script.
59
+
Test thoroughly in a controlled environment before deploying to production.
53
60
History : 1.0.0 FN 27/07/14 initial version
54
61
1.1.0 FN 25/08/14 Change script to handle new GUID on GPO backup
55
62
1.1.1 FN 03/09/14 Fix Targetpath for secured enviorment
@@ -67,6 +74,7 @@ History : 1.0.0 FN 27/07/14 initial version
67
74
1.60 FN 13.10.22 Added PowerShell Creation for easier GPO export and import - only works with GPO Settings stored in Regestry Keys under HKEY_LOCAL_MACHINE and HKEY_CURRENT_USER Everthing under Software and System!
68
75
1.61 FN 26.01.23 Small Improvements for Module loading
69
76
1.7 FN 25.10.2025 Change License to GPLv3, except for 3rdparty code (e.g Function Get-GPPolicyKey)
77
+
1.8 FN 03.12.2025 Changed License to MIT, housekeeping Header
0 commit comments