├── .gitignore ├── DSZ_logs.png ├── DanderSpritz_lab.png ├── Doublepulsar_config.png ├── Fuzzbunch_project.png ├── Peddlecheap_connect.png ├── README.md ├── Vagrantfile ├── answer_files ├── 7 │ └── Autounattend.xml ├── 10 │ └── Autounattend.xml ├── 2008_r2 │ ├── Autounattend.xml │ └── dcpromo_answer.txt └── dcpromo_answer.txt ├── danderspritz_lab.json ├── packer_cache └── .gitkeep ├── pc_config.png ├── scripts ├── .gitignore ├── Install-Chocolatey.ps1 ├── Install-Git.ps1 ├── Target │ ├── Add-local-admin.ps1 │ ├── Create-tools-folder-link.ps1 │ ├── Install-FLAREAPIMonitor.ps1 │ ├── Install-FLAREBinaryNinja.ps1 │ ├── Install-FLAREEXEInfoPE.ps1 │ ├── Install-FLAREHXD.ps1 │ ├── Install-FLAREHashCalc.ps1 │ ├── Install-FLAREIDAFree.ps1 │ ├── Install-FLAREOllydbg2.ps1 │ ├── Install-FLAREPEID.ps1 │ ├── Install-FLAREPEView.ps1 │ ├── Install-FLAREWindbg.ps1 │ ├── Install-FLAREWireshark.ps1 │ ├── Install-KB2454826.ps1 │ ├── Install-KB2533552.ps1 │ ├── Install-KB2534366.ps1 │ ├── Install-KB2999226.ps1 │ ├── Install-KB3033929.ps1 │ ├── Install-KB3035131.ps1 │ ├── Install-SP1.ps1 │ ├── Install-Sysinternals.ps1 │ ├── Install-Sysmon.ps1 │ ├── Install-vcredist2015.ps1 │ ├── Join-domain.ps1 │ ├── Set-ChocolateyFLARERepo.ps1 │ ├── Set-Hostname.ps1 │ ├── create-tools-folder.bat │ ├── dis-updates.ps1 │ ├── disable_firewall.bat │ └── show-hidden-files.ps1 ├── Win10 │ ├── Install-DanderSpritz.ps1 │ ├── Install-jre6u21.ps1 │ ├── Install-python.ps1 │ ├── Install-winpy32.ps1 │ ├── Remove-PreInstalledApps.ps1 │ ├── Set-LowSecurityWindowsDefenderAntiVirusSettings.ps1 │ ├── Set-LowSecurityWindowsDefenderSmartScreenSettings.ps1 │ ├── Set-PowerSettings.ps1 │ ├── Set-WindowsTelemetrySettings.ps1 │ └── virtual-drive.ps1 ├── WinDC │ ├── Create-OUs.ps1 │ ├── Create-auditpolicy-gpos.ps1 │ ├── Create-domain.ps1 │ ├── Create-powershell-gpo.ps1 │ ├── Create-wef-gpo.ps1 │ ├── Download-palantir-wef.ps1 │ ├── Install-Powershell5.ps1 │ ├── Install-dotnet45.ps1 │ ├── Install-wef-subscriptions.ps1 │ ├── Set-DNS-and-Timezone.ps1 │ └── Set-Hostname-dc.ps1 ├── autologon.ps1 ├── compact.bat ├── compile-dotnet-assemblies.bat ├── disable-auto-logon.bat ├── disable-updates.ps1 ├── enable-rdp.bat ├── fixnetwork.ps1 ├── hotfix-KB2842230.bat ├── hotfix-KB3102810.bat ├── microsoft-updates.bat ├── openssh.ps1 ├── oracle-cert.cer ├── resources │ ├── Domain_Controllers_Enhanced_Auditing_Policy │ │ ├── manifest.xml │ │ └── {3F2B9314-2D8F-452F-91CE-F9F13B04BA2C} │ │ │ ├── Backup.xml │ │ │ ├── DomainSysvol │ │ │ └── GPO │ │ │ │ └── Machine │ │ │ │ ├── Preferences │ │ │ │ └── Registry │ │ │ │ │ └── Registry.xml │ │ │ │ ├── comment.cmtx │ │ │ │ ├── microsoft │ │ │ │ └── windows nt │ │ │ │ │ ├── Audit │ │ │ │ │ └── audit.csv │ │ │ │ │ └── SecEdit │ │ │ │ │ └── GptTmpl.inf │ │ │ │ └── registry.pol │ │ │ ├── bkupInfo.xml │ │ │ └── gpreport.xml │ ├── Servers_Enhanced_Auditing_Policy │ │ ├── manifest.xml │ │ └── {E471372E-9280-47FB-963A-7B2A75182ACC} │ │ │ ├── Backup.xml │ │ │ ├── DomainSysvol │ │ │ └── GPO │ │ │ │ └── Machine │ │ │ │ ├── Preferences │ │ │ │ └── Registry │ │ │ │ │ └── Registry.xml │ │ │ │ ├── comment.cmtx │ │ │ │ ├── microsoft │ │ │ │ └── windows nt │ │ │ │ │ ├── Audit │ │ │ │ │ └── audit.csv │ │ │ │ │ └── SecEdit │ │ │ │ │ └── GptTmpl.inf │ │ │ │ └── registry.pol │ │ │ ├── bkupInfo.xml │ │ │ └── gpreport.xml │ ├── Workstations_Enhanced_Auditing_Policy │ │ ├── manifest.xml │ │ └── {1CC39F6D-972E-4E7F-A5BD-AEB9C0B1083F} │ │ │ ├── Backup.xml │ │ │ ├── DomainSysvol │ │ │ └── GPO │ │ │ │ └── Machine │ │ │ │ ├── Preferences │ │ │ │ └── Registry │ │ │ │ │ └── Registry.xml │ │ │ │ ├── comment.cmtx │ │ │ │ ├── microsoft │ │ │ │ └── windows nt │ │ │ │ │ ├── Audit │ │ │ │ │ └── audit.csv │ │ │ │ │ └── SecEdit │ │ │ │ │ └── GptTmpl.inf │ │ │ │ └── registry.pol │ │ │ ├── bkupInfo.xml │ │ │ └── gpreport.xml │ ├── powershell_logging │ │ ├── manifest.xml │ │ └── {44CF152B-475A-4217-A590-57C8BFA9B48F} │ │ │ ├── Backup.xml │ │ │ ├── DomainSysvol │ │ │ └── GPO │ │ │ │ └── Machine │ │ │ │ ├── comment.cmtx │ │ │ │ └── registry.pol │ │ │ ├── bkupInfo.xml │ │ │ └── gpreport.xml │ ├── reports │ │ ├── Custom Event Channel Permissions.htm │ │ ├── Default Domain Controllers Policy.htm │ │ ├── Default Domain Policy.htm │ │ ├── Domain Controllers Enhanced Auditing Policy.htm │ │ ├── Powershell Logging.htm │ │ ├── Servers Enhanced Auditing Policy.htm │ │ ├── Windows Event Forwarding Server.htm │ │ └── Workstations Enhanced Auditing Policy.htm │ ├── sysmon │ │ └── sysmonconfig-export.xml │ └── wef_configuration │ │ ├── manifest.xml │ │ ├── {356446EB-632C-4101-817A-03406421847E} │ │ ├── Backup.xml │ │ ├── DomainSysvol │ │ │ └── GPO │ │ │ │ └── Machine │ │ │ │ └── Preferences │ │ │ │ └── Registry │ │ │ │ └── Registry.xml │ │ ├── bkupInfo.xml │ │ └── gpreport.xml │ │ └── {D404DB03-D1F4-4657-8709-685785CD1859} │ │ ├── Backup.xml │ │ ├── DomainSysvol │ │ └── GPO │ │ │ └── Machine │ │ │ ├── comment.cmtx │ │ │ └── registry.pol │ │ ├── bkupInfo.xml │ │ └── gpreport.xml ├── vagrant-ssh.bat ├── vm-guest-tools.bat └── win-updates.ps1 ├── vagrantfile-windows_10.template ├── vagrantfile-windows_2008_r2.template └── vagrantfile-windows_7.template /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/.gitignore -------------------------------------------------------------------------------- /DSZ_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/DSZ_logs.png -------------------------------------------------------------------------------- /DanderSpritz_lab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/DanderSpritz_lab.png -------------------------------------------------------------------------------- /Doublepulsar_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/Doublepulsar_config.png -------------------------------------------------------------------------------- /Fuzzbunch_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/Fuzzbunch_project.png -------------------------------------------------------------------------------- /Peddlecheap_connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/Peddlecheap_connect.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/Vagrantfile -------------------------------------------------------------------------------- /answer_files/10/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/answer_files/10/Autounattend.xml -------------------------------------------------------------------------------- /answer_files/2008_r2/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/answer_files/2008_r2/Autounattend.xml -------------------------------------------------------------------------------- /answer_files/2008_r2/dcpromo_answer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/answer_files/2008_r2/dcpromo_answer.txt -------------------------------------------------------------------------------- /answer_files/7/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/answer_files/7/Autounattend.xml -------------------------------------------------------------------------------- /answer_files/dcpromo_answer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/answer_files/dcpromo_answer.txt -------------------------------------------------------------------------------- /danderspritz_lab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/danderspritz_lab.json -------------------------------------------------------------------------------- /packer_cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pc_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/pc_config.png -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/.gitignore -------------------------------------------------------------------------------- /scripts/Install-Chocolatey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Install-Chocolatey.ps1 -------------------------------------------------------------------------------- /scripts/Install-Git.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Install-Git.ps1 -------------------------------------------------------------------------------- /scripts/Target/Add-local-admin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Target/Add-local-admin.ps1 -------------------------------------------------------------------------------- /scripts/Target/Create-tools-folder-link.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Target/Create-tools-folder-link.ps1 -------------------------------------------------------------------------------- /scripts/Target/Install-FLAREAPIMonitor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Target/Install-FLAREAPIMonitor.ps1 -------------------------------------------------------------------------------- /scripts/Target/Install-FLAREBinaryNinja.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Target/Install-FLAREBinaryNinja.ps1 -------------------------------------------------------------------------------- /scripts/Target/Install-FLAREEXEInfoPE.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Target/Install-FLAREEXEInfoPE.ps1 -------------------------------------------------------------------------------- /scripts/Target/Install-FLAREHXD.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Target/Install-FLAREHXD.ps1 -------------------------------------------------------------------------------- /scripts/Target/Install-FLAREHashCalc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Target/Install-FLAREHashCalc.ps1 -------------------------------------------------------------------------------- /scripts/Target/Install-FLAREIDAFree.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Target/Install-FLAREIDAFree.ps1 -------------------------------------------------------------------------------- /scripts/Target/Install-FLAREOllydbg2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Target/Install-FLAREOllydbg2.ps1 -------------------------------------------------------------------------------- /scripts/Target/Install-FLAREPEID.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Target/Install-FLAREPEID.ps1 -------------------------------------------------------------------------------- /scripts/Target/Install-FLAREPEView.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Target/Install-FLAREPEView.ps1 -------------------------------------------------------------------------------- /scripts/Target/Install-FLAREWindbg.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Target/Install-FLAREWindbg.ps1 -------------------------------------------------------------------------------- /scripts/Target/Install-FLAREWireshark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Target/Install-FLAREWireshark.ps1 -------------------------------------------------------------------------------- /scripts/Target/Install-KB2454826.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Target/Install-KB2454826.ps1 -------------------------------------------------------------------------------- /scripts/Target/Install-KB2533552.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Target/Install-KB2533552.ps1 -------------------------------------------------------------------------------- /scripts/Target/Install-KB2534366.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Target/Install-KB2534366.ps1 -------------------------------------------------------------------------------- /scripts/Target/Install-KB2999226.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Target/Install-KB2999226.ps1 -------------------------------------------------------------------------------- /scripts/Target/Install-KB3033929.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Target/Install-KB3033929.ps1 -------------------------------------------------------------------------------- /scripts/Target/Install-KB3035131.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Target/Install-KB3035131.ps1 -------------------------------------------------------------------------------- /scripts/Target/Install-SP1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Target/Install-SP1.ps1 -------------------------------------------------------------------------------- /scripts/Target/Install-Sysinternals.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Target/Install-Sysinternals.ps1 -------------------------------------------------------------------------------- /scripts/Target/Install-Sysmon.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Target/Install-Sysmon.ps1 -------------------------------------------------------------------------------- /scripts/Target/Install-vcredist2015.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Target/Install-vcredist2015.ps1 -------------------------------------------------------------------------------- /scripts/Target/Join-domain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Target/Join-domain.ps1 -------------------------------------------------------------------------------- /scripts/Target/Set-ChocolateyFLARERepo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Target/Set-ChocolateyFLARERepo.ps1 -------------------------------------------------------------------------------- /scripts/Target/Set-Hostname.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Target/Set-Hostname.ps1 -------------------------------------------------------------------------------- /scripts/Target/create-tools-folder.bat: -------------------------------------------------------------------------------- 1 | mkdir C:\Users\vagrant\Desktop\tools -------------------------------------------------------------------------------- /scripts/Target/dis-updates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Target/dis-updates.ps1 -------------------------------------------------------------------------------- /scripts/Target/disable_firewall.bat: -------------------------------------------------------------------------------- 1 | @NetSh AdvFirewall Set AllProfiles State Off -------------------------------------------------------------------------------- /scripts/Target/show-hidden-files.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Target/show-hidden-files.ps1 -------------------------------------------------------------------------------- /scripts/Win10/Install-DanderSpritz.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Win10/Install-DanderSpritz.ps1 -------------------------------------------------------------------------------- /scripts/Win10/Install-jre6u21.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Win10/Install-jre6u21.ps1 -------------------------------------------------------------------------------- /scripts/Win10/Install-python.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Win10/Install-python.ps1 -------------------------------------------------------------------------------- /scripts/Win10/Install-winpy32.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Win10/Install-winpy32.ps1 -------------------------------------------------------------------------------- /scripts/Win10/Remove-PreInstalledApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Win10/Remove-PreInstalledApps.ps1 -------------------------------------------------------------------------------- /scripts/Win10/Set-LowSecurityWindowsDefenderAntiVirusSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Win10/Set-LowSecurityWindowsDefenderAntiVirusSettings.ps1 -------------------------------------------------------------------------------- /scripts/Win10/Set-LowSecurityWindowsDefenderSmartScreenSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Win10/Set-LowSecurityWindowsDefenderSmartScreenSettings.ps1 -------------------------------------------------------------------------------- /scripts/Win10/Set-PowerSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Win10/Set-PowerSettings.ps1 -------------------------------------------------------------------------------- /scripts/Win10/Set-WindowsTelemetrySettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Win10/Set-WindowsTelemetrySettings.ps1 -------------------------------------------------------------------------------- /scripts/Win10/virtual-drive.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/Win10/virtual-drive.ps1 -------------------------------------------------------------------------------- /scripts/WinDC/Create-OUs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/WinDC/Create-OUs.ps1 -------------------------------------------------------------------------------- /scripts/WinDC/Create-auditpolicy-gpos.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/WinDC/Create-auditpolicy-gpos.ps1 -------------------------------------------------------------------------------- /scripts/WinDC/Create-domain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/WinDC/Create-domain.ps1 -------------------------------------------------------------------------------- /scripts/WinDC/Create-powershell-gpo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/WinDC/Create-powershell-gpo.ps1 -------------------------------------------------------------------------------- /scripts/WinDC/Create-wef-gpo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/WinDC/Create-wef-gpo.ps1 -------------------------------------------------------------------------------- /scripts/WinDC/Download-palantir-wef.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/WinDC/Download-palantir-wef.ps1 -------------------------------------------------------------------------------- /scripts/WinDC/Install-Powershell5.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/WinDC/Install-Powershell5.ps1 -------------------------------------------------------------------------------- /scripts/WinDC/Install-dotnet45.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/WinDC/Install-dotnet45.ps1 -------------------------------------------------------------------------------- /scripts/WinDC/Install-wef-subscriptions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/WinDC/Install-wef-subscriptions.ps1 -------------------------------------------------------------------------------- /scripts/WinDC/Set-DNS-and-Timezone.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/WinDC/Set-DNS-and-Timezone.ps1 -------------------------------------------------------------------------------- /scripts/WinDC/Set-Hostname-dc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/WinDC/Set-Hostname-dc.ps1 -------------------------------------------------------------------------------- /scripts/autologon.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/autologon.ps1 -------------------------------------------------------------------------------- /scripts/compact.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/compact.bat -------------------------------------------------------------------------------- /scripts/compile-dotnet-assemblies.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/compile-dotnet-assemblies.bat -------------------------------------------------------------------------------- /scripts/disable-auto-logon.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/disable-auto-logon.bat -------------------------------------------------------------------------------- /scripts/disable-updates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/disable-updates.ps1 -------------------------------------------------------------------------------- /scripts/enable-rdp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/enable-rdp.bat -------------------------------------------------------------------------------- /scripts/fixnetwork.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/fixnetwork.ps1 -------------------------------------------------------------------------------- /scripts/hotfix-KB2842230.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/hotfix-KB2842230.bat -------------------------------------------------------------------------------- /scripts/hotfix-KB3102810.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/hotfix-KB3102810.bat -------------------------------------------------------------------------------- /scripts/microsoft-updates.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/microsoft-updates.bat -------------------------------------------------------------------------------- /scripts/openssh.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/openssh.ps1 -------------------------------------------------------------------------------- /scripts/oracle-cert.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/oracle-cert.cer -------------------------------------------------------------------------------- /scripts/resources/Domain_Controllers_Enhanced_Auditing_Policy/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/Domain_Controllers_Enhanced_Auditing_Policy/manifest.xml -------------------------------------------------------------------------------- /scripts/resources/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/Backup.xml -------------------------------------------------------------------------------- /scripts/resources/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/DomainSysvol/GPO/Machine/Preferences/Registry/Registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/DomainSysvol/GPO/Machine/Preferences/Registry/Registry.xml -------------------------------------------------------------------------------- /scripts/resources/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /scripts/resources/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/DomainSysvol/GPO/Machine/microsoft/windows nt/Audit/audit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/DomainSysvol/GPO/Machine/microsoft/windows nt/Audit/audit.csv -------------------------------------------------------------------------------- /scripts/resources/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/DomainSysvol/GPO/Machine/microsoft/windows nt/SecEdit/GptTmpl.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/DomainSysvol/GPO/Machine/microsoft/windows nt/SecEdit/GptTmpl.inf -------------------------------------------------------------------------------- /scripts/resources/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /scripts/resources/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/bkupInfo.xml -------------------------------------------------------------------------------- /scripts/resources/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/gpreport.xml -------------------------------------------------------------------------------- /scripts/resources/Servers_Enhanced_Auditing_Policy/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/Servers_Enhanced_Auditing_Policy/manifest.xml -------------------------------------------------------------------------------- /scripts/resources/Servers_Enhanced_Auditing_Policy/{E471372E-9280-47FB-963A-7B2A75182ACC}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/Servers_Enhanced_Auditing_Policy/{E471372E-9280-47FB-963A-7B2A75182ACC}/Backup.xml -------------------------------------------------------------------------------- /scripts/resources/Servers_Enhanced_Auditing_Policy/{E471372E-9280-47FB-963A-7B2A75182ACC}/DomainSysvol/GPO/Machine/Preferences/Registry/Registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/Servers_Enhanced_Auditing_Policy/{E471372E-9280-47FB-963A-7B2A75182ACC}/DomainSysvol/GPO/Machine/Preferences/Registry/Registry.xml -------------------------------------------------------------------------------- /scripts/resources/Servers_Enhanced_Auditing_Policy/{E471372E-9280-47FB-963A-7B2A75182ACC}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/Servers_Enhanced_Auditing_Policy/{E471372E-9280-47FB-963A-7B2A75182ACC}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /scripts/resources/Servers_Enhanced_Auditing_Policy/{E471372E-9280-47FB-963A-7B2A75182ACC}/DomainSysvol/GPO/Machine/microsoft/windows nt/Audit/audit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/Servers_Enhanced_Auditing_Policy/{E471372E-9280-47FB-963A-7B2A75182ACC}/DomainSysvol/GPO/Machine/microsoft/windows nt/Audit/audit.csv -------------------------------------------------------------------------------- /scripts/resources/Servers_Enhanced_Auditing_Policy/{E471372E-9280-47FB-963A-7B2A75182ACC}/DomainSysvol/GPO/Machine/microsoft/windows nt/SecEdit/GptTmpl.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/Servers_Enhanced_Auditing_Policy/{E471372E-9280-47FB-963A-7B2A75182ACC}/DomainSysvol/GPO/Machine/microsoft/windows nt/SecEdit/GptTmpl.inf -------------------------------------------------------------------------------- /scripts/resources/Servers_Enhanced_Auditing_Policy/{E471372E-9280-47FB-963A-7B2A75182ACC}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/Servers_Enhanced_Auditing_Policy/{E471372E-9280-47FB-963A-7B2A75182ACC}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /scripts/resources/Servers_Enhanced_Auditing_Policy/{E471372E-9280-47FB-963A-7B2A75182ACC}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/Servers_Enhanced_Auditing_Policy/{E471372E-9280-47FB-963A-7B2A75182ACC}/bkupInfo.xml -------------------------------------------------------------------------------- /scripts/resources/Servers_Enhanced_Auditing_Policy/{E471372E-9280-47FB-963A-7B2A75182ACC}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/Servers_Enhanced_Auditing_Policy/{E471372E-9280-47FB-963A-7B2A75182ACC}/gpreport.xml -------------------------------------------------------------------------------- /scripts/resources/Workstations_Enhanced_Auditing_Policy/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/Workstations_Enhanced_Auditing_Policy/manifest.xml -------------------------------------------------------------------------------- /scripts/resources/Workstations_Enhanced_Auditing_Policy/{1CC39F6D-972E-4E7F-A5BD-AEB9C0B1083F}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/Workstations_Enhanced_Auditing_Policy/{1CC39F6D-972E-4E7F-A5BD-AEB9C0B1083F}/Backup.xml -------------------------------------------------------------------------------- /scripts/resources/Workstations_Enhanced_Auditing_Policy/{1CC39F6D-972E-4E7F-A5BD-AEB9C0B1083F}/DomainSysvol/GPO/Machine/Preferences/Registry/Registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/Workstations_Enhanced_Auditing_Policy/{1CC39F6D-972E-4E7F-A5BD-AEB9C0B1083F}/DomainSysvol/GPO/Machine/Preferences/Registry/Registry.xml -------------------------------------------------------------------------------- /scripts/resources/Workstations_Enhanced_Auditing_Policy/{1CC39F6D-972E-4E7F-A5BD-AEB9C0B1083F}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/Workstations_Enhanced_Auditing_Policy/{1CC39F6D-972E-4E7F-A5BD-AEB9C0B1083F}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /scripts/resources/Workstations_Enhanced_Auditing_Policy/{1CC39F6D-972E-4E7F-A5BD-AEB9C0B1083F}/DomainSysvol/GPO/Machine/microsoft/windows nt/Audit/audit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/Workstations_Enhanced_Auditing_Policy/{1CC39F6D-972E-4E7F-A5BD-AEB9C0B1083F}/DomainSysvol/GPO/Machine/microsoft/windows nt/Audit/audit.csv -------------------------------------------------------------------------------- /scripts/resources/Workstations_Enhanced_Auditing_Policy/{1CC39F6D-972E-4E7F-A5BD-AEB9C0B1083F}/DomainSysvol/GPO/Machine/microsoft/windows nt/SecEdit/GptTmpl.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/Workstations_Enhanced_Auditing_Policy/{1CC39F6D-972E-4E7F-A5BD-AEB9C0B1083F}/DomainSysvol/GPO/Machine/microsoft/windows nt/SecEdit/GptTmpl.inf -------------------------------------------------------------------------------- /scripts/resources/Workstations_Enhanced_Auditing_Policy/{1CC39F6D-972E-4E7F-A5BD-AEB9C0B1083F}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/Workstations_Enhanced_Auditing_Policy/{1CC39F6D-972E-4E7F-A5BD-AEB9C0B1083F}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /scripts/resources/Workstations_Enhanced_Auditing_Policy/{1CC39F6D-972E-4E7F-A5BD-AEB9C0B1083F}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/Workstations_Enhanced_Auditing_Policy/{1CC39F6D-972E-4E7F-A5BD-AEB9C0B1083F}/bkupInfo.xml -------------------------------------------------------------------------------- /scripts/resources/Workstations_Enhanced_Auditing_Policy/{1CC39F6D-972E-4E7F-A5BD-AEB9C0B1083F}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/Workstations_Enhanced_Auditing_Policy/{1CC39F6D-972E-4E7F-A5BD-AEB9C0B1083F}/gpreport.xml -------------------------------------------------------------------------------- /scripts/resources/powershell_logging/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/powershell_logging/manifest.xml -------------------------------------------------------------------------------- /scripts/resources/powershell_logging/{44CF152B-475A-4217-A590-57C8BFA9B48F}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/powershell_logging/{44CF152B-475A-4217-A590-57C8BFA9B48F}/Backup.xml -------------------------------------------------------------------------------- /scripts/resources/powershell_logging/{44CF152B-475A-4217-A590-57C8BFA9B48F}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/powershell_logging/{44CF152B-475A-4217-A590-57C8BFA9B48F}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /scripts/resources/powershell_logging/{44CF152B-475A-4217-A590-57C8BFA9B48F}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/powershell_logging/{44CF152B-475A-4217-A590-57C8BFA9B48F}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /scripts/resources/powershell_logging/{44CF152B-475A-4217-A590-57C8BFA9B48F}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/powershell_logging/{44CF152B-475A-4217-A590-57C8BFA9B48F}/bkupInfo.xml -------------------------------------------------------------------------------- /scripts/resources/powershell_logging/{44CF152B-475A-4217-A590-57C8BFA9B48F}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/powershell_logging/{44CF152B-475A-4217-A590-57C8BFA9B48F}/gpreport.xml -------------------------------------------------------------------------------- /scripts/resources/reports/Custom Event Channel Permissions.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/reports/Custom Event Channel Permissions.htm -------------------------------------------------------------------------------- /scripts/resources/reports/Default Domain Controllers Policy.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/reports/Default Domain Controllers Policy.htm -------------------------------------------------------------------------------- /scripts/resources/reports/Default Domain Policy.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/reports/Default Domain Policy.htm -------------------------------------------------------------------------------- /scripts/resources/reports/Domain Controllers Enhanced Auditing Policy.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/reports/Domain Controllers Enhanced Auditing Policy.htm -------------------------------------------------------------------------------- /scripts/resources/reports/Powershell Logging.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/reports/Powershell Logging.htm -------------------------------------------------------------------------------- /scripts/resources/reports/Servers Enhanced Auditing Policy.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/reports/Servers Enhanced Auditing Policy.htm -------------------------------------------------------------------------------- /scripts/resources/reports/Windows Event Forwarding Server.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/reports/Windows Event Forwarding Server.htm -------------------------------------------------------------------------------- /scripts/resources/reports/Workstations Enhanced Auditing Policy.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/reports/Workstations Enhanced Auditing Policy.htm -------------------------------------------------------------------------------- /scripts/resources/sysmon/sysmonconfig-export.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/sysmon/sysmonconfig-export.xml -------------------------------------------------------------------------------- /scripts/resources/wef_configuration/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/wef_configuration/manifest.xml -------------------------------------------------------------------------------- /scripts/resources/wef_configuration/{356446EB-632C-4101-817A-03406421847E}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/wef_configuration/{356446EB-632C-4101-817A-03406421847E}/Backup.xml -------------------------------------------------------------------------------- /scripts/resources/wef_configuration/{356446EB-632C-4101-817A-03406421847E}/DomainSysvol/GPO/Machine/Preferences/Registry/Registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/wef_configuration/{356446EB-632C-4101-817A-03406421847E}/DomainSysvol/GPO/Machine/Preferences/Registry/Registry.xml -------------------------------------------------------------------------------- /scripts/resources/wef_configuration/{356446EB-632C-4101-817A-03406421847E}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/wef_configuration/{356446EB-632C-4101-817A-03406421847E}/bkupInfo.xml -------------------------------------------------------------------------------- /scripts/resources/wef_configuration/{356446EB-632C-4101-817A-03406421847E}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/wef_configuration/{356446EB-632C-4101-817A-03406421847E}/gpreport.xml -------------------------------------------------------------------------------- /scripts/resources/wef_configuration/{D404DB03-D1F4-4657-8709-685785CD1859}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/wef_configuration/{D404DB03-D1F4-4657-8709-685785CD1859}/Backup.xml -------------------------------------------------------------------------------- /scripts/resources/wef_configuration/{D404DB03-D1F4-4657-8709-685785CD1859}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/wef_configuration/{D404DB03-D1F4-4657-8709-685785CD1859}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /scripts/resources/wef_configuration/{D404DB03-D1F4-4657-8709-685785CD1859}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/wef_configuration/{D404DB03-D1F4-4657-8709-685785CD1859}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /scripts/resources/wef_configuration/{D404DB03-D1F4-4657-8709-685785CD1859}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/wef_configuration/{D404DB03-D1F4-4657-8709-685785CD1859}/bkupInfo.xml -------------------------------------------------------------------------------- /scripts/resources/wef_configuration/{D404DB03-D1F4-4657-8709-685785CD1859}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/resources/wef_configuration/{D404DB03-D1F4-4657-8709-685785CD1859}/gpreport.xml -------------------------------------------------------------------------------- /scripts/vagrant-ssh.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/vagrant-ssh.bat -------------------------------------------------------------------------------- /scripts/vm-guest-tools.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/vm-guest-tools.bat -------------------------------------------------------------------------------- /scripts/win-updates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/scripts/win-updates.ps1 -------------------------------------------------------------------------------- /vagrantfile-windows_10.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/vagrantfile-windows_10.template -------------------------------------------------------------------------------- /vagrantfile-windows_2008_r2.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/vagrantfile-windows_2008_r2.template -------------------------------------------------------------------------------- /vagrantfile-windows_7.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/francisck/DanderSpritz_lab/HEAD/vagrantfile-windows_7.template --------------------------------------------------------------------------------