├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── codeql-analysis.yml │ ├── devskim.yml │ ├── greetings.yml │ ├── label.yml │ ├── ossar-analysis.yml │ ├── powershell.yml │ ├── stale.yml │ ├── test-with-docker.yml │ └── virustotal.yml ├── Dockerfile ├── Files ├── .Net Configuration Files │ ├── secure.machine-v2.config │ └── secure.machine-v4.config ├── Auditing │ └── auditbaseline.csv ├── FireFox Configuration Files │ ├── defaults │ │ └── pref │ │ │ └── local-settings.js │ ├── local-settings.js │ └── mozilla.cfg ├── GPOs │ ├── DoD │ │ ├── Adobe │ │ │ ├── DoD - Adobe Acrobat Pro DC Cont. - Computer │ │ │ │ ├── manifest.xml │ │ │ │ └── {E7DD3E29-5119-450A-8AC8-6F05978AE354} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ └── Machine │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Adobe Acrobat Pro DC Cont. - User │ │ │ │ ├── manifest.xml │ │ │ │ └── {A13B5A61-9DF7-476C-BA36-6BA0933AAB49} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ └── User │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Adobe Acrobat Reader DC Cont. - Computer │ │ │ │ ├── manifest.xml │ │ │ │ └── {E6DD3B56-5369-42F5-9822-D2FD32BED15F} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ ├── Machine │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ │ └── User │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ └── DoD - Adobe Acrobat Reader DC Cont. - User │ │ │ │ ├── manifest.xml │ │ │ │ └── {A0FEF3FE-13FD-45F4-B345-F295BB8A2349} │ │ │ │ ├── Backup.xml │ │ │ │ ├── DomainSysvol │ │ │ │ └── GPO │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ ├── Machine │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ └── registry.pol │ │ │ │ │ └── User │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ └── registry.pol │ │ │ │ ├── bkupInfo.xml │ │ │ │ └── gpreport.xml │ │ ├── Chrome │ │ │ └── DoD - Google Chrome │ │ │ │ ├── manifest.xml │ │ │ │ └── {422A8419-0D1C-4178-8C9E-AD62D519918E} │ │ │ │ ├── Backup.xml │ │ │ │ ├── DomainSysvol │ │ │ │ └── GPO │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ └── Machine │ │ │ │ │ ├── Microsoft │ │ │ │ │ └── Windows NT │ │ │ │ │ │ └── SecEdit │ │ │ │ │ │ └── GptTmpl.inf │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ └── registry.pol │ │ │ │ ├── bkupInfo.xml │ │ │ │ └── gpreport.xml │ │ ├── Defender │ │ │ └── DoD - Windows Defender │ │ │ │ ├── manifest.xml │ │ │ │ └── {05631C57-8B78-4397-9A62-D57DB98EEB08} │ │ │ │ ├── Backup.xml │ │ │ │ ├── DomainSysvol │ │ │ │ └── GPO │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ └── Machine │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ └── registry.pol │ │ │ │ ├── bkupInfo.xml │ │ │ │ └── gpreport.xml │ │ ├── Edge │ │ │ └── DoD - Microsoft Chromium Edge │ │ │ │ ├── manifest.xml │ │ │ │ └── {FBA412D1-D7F4-49D6-848C-CBFDC3250850} │ │ │ │ ├── Backup.xml │ │ │ │ ├── DomainSysvol │ │ │ │ └── GPO │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ ├── Machine │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ └── registry.pol │ │ │ │ │ └── User │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ └── registry.pol │ │ │ │ ├── bkupInfo.xml │ │ │ │ └── gpreport.xml │ │ ├── FireFox │ │ │ └── DoD - Mozilla FireFox │ │ │ │ └── {51EA0DC4-8D24-4491-B825-CF067628EAB3} │ │ │ │ ├── Backup.xml │ │ │ │ ├── DomainSysvol │ │ │ │ └── GPO │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ └── Machine │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ └── registry.pol │ │ │ │ ├── bkupInfo.xml │ │ │ │ └── gpreport.xml │ │ ├── Firewall │ │ │ └── DoD - Windows Firewall │ │ │ │ ├── manifest.xml │ │ │ │ └── {F089F2A4-6D59-42DA-8DF9-2A9AC7709341} │ │ │ │ ├── Backup.xml │ │ │ │ ├── DomainSysvol │ │ │ │ └── GPO │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ └── Machine │ │ │ │ │ ├── Microsoft │ │ │ │ │ └── Windows NT │ │ │ │ │ │ └── SecEdit │ │ │ │ │ │ └── GptTmpl.inf │ │ │ │ │ └── registry.pol │ │ │ │ ├── bkupInfo.xml │ │ │ │ └── gpreport.xml │ │ ├── Horizon │ │ │ ├── DoD - Horizon Agent │ │ │ │ ├── manifest.xml │ │ │ │ └── {00DF50DE-3118-4401-814A-0D2FBEB33BAB} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ └── Machine │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ └── DoD - Horizon Client │ │ │ │ ├── manifest.xml │ │ │ │ └── {05D5A3EA-95FA-4294-A5BC-4ABFAABE8EE1} │ │ │ │ ├── Backup.xml │ │ │ │ ├── DomainSysvol │ │ │ │ └── GPO │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ └── Machine │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ └── registry.pol │ │ │ │ ├── bkupInfo.xml │ │ │ │ └── gpreport.xml │ │ ├── IE11 │ │ │ ├── DoD - Internet Explorer 11 - Computer │ │ │ │ ├── manifest.xml │ │ │ │ └── {E2D06306-79E7-430C-969D-5A07D212D0EB} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ └── Machine │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ └── DoD - Internet Explorer 11 - User │ │ │ │ ├── manifest.xml │ │ │ │ └── {A0BC1714-C6A6-411E-8383-34182EDB6149} │ │ │ │ ├── Backup.xml │ │ │ │ ├── DomainSysvol │ │ │ │ └── GPO │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ └── User │ │ │ │ │ ├── Preferences │ │ │ │ │ └── Registry │ │ │ │ │ │ └── Registry.xml │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ └── registry.pol │ │ │ │ ├── bkupInfo.xml │ │ │ │ └── gpreport.xml │ │ ├── Office │ │ │ ├── DoD - Access 2013 │ │ │ │ ├── manifest.xml │ │ │ │ └── {607FAF67-1276-4684-82F8-06A8400A4E57} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ └── User │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Access 2016 │ │ │ │ ├── manifest.xml │ │ │ │ └── {F2C58942-558E-4F18-B27E-BA5F47BA569F} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ └── User │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Excel 2013 │ │ │ │ ├── manifest.xml │ │ │ │ └── {E9FBEB8F-F375-44A1-A0ED-28244A133B53} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ └── User │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Excel 2016 │ │ │ │ ├── manifest.xml │ │ │ │ └── {BFE5D71C-9593-4A5E-953D-E9F676831A0E} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ └── User │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Infopath 2013 - Computer │ │ │ │ ├── manifest.xml │ │ │ │ └── {829AF667-FE0F-4740-B308-64A33D81724B} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ ├── Machine │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ │ └── User │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Infopath 2013 - User │ │ │ │ ├── manifest.xml │ │ │ │ └── {7A19DF08-BD47-4B75-9C61-C5A28652955E} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ └── User │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Lync 2013 │ │ │ │ ├── manifest.xml │ │ │ │ └── {CBB670E0-EDAC-422C-915D-C9C6B940DF25} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ ├── Machine │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ │ └── User │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Office 2013 System - Computer │ │ │ │ ├── manifest.xml │ │ │ │ └── {0DAB97C1-A90D-4316-AD18-E0E2D3D2552F} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ ├── Machine │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ │ └── User │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Office 2013 System - User │ │ │ │ ├── manifest.xml │ │ │ │ └── {E2D2EFA4-A5CB-4296-992F-B5C3FD6D9A6E} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ └── User │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Office 2016 System - Computer │ │ │ │ ├── manifest.xml │ │ │ │ └── {04EC6E63-6996-4B1F-B4C8-8E77ED582F7D} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ └── Machine │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Office 2016 System - User │ │ │ │ ├── manifest.xml │ │ │ │ └── {FEBA971B-64EE-4402-8CF3-BD8EFB68F987} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ └── User │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Office 2019 System - Computer │ │ │ │ ├── manifest.xml │ │ │ │ └── {F30C640A-9304-4BAB-9301-98313D78EDA8} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ └── Machine │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Office 2019 System - User │ │ │ │ ├── manifest.xml │ │ │ │ └── {AAEEB370-628D-461A-819E-6807F0D543EF} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ └── User │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - OneDrive for Business 2016 - Computer │ │ │ │ ├── manifest.xml │ │ │ │ └── {7E6A6C4E-586B-46CC-B706-7CE80D604B4A} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ └── Machine │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - OneDrive for Business 2016 - User │ │ │ │ ├── manifest.xml │ │ │ │ └── {F1033BD9-065D-48AC-8B3D-CA763750D38C} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ └── User │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Outlook 2013 │ │ │ │ ├── manifest.xml │ │ │ │ └── {70DCE625-7CF4-424D-8532-7C86D031B734} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ └── User │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Outlook 2016 │ │ │ │ ├── manifest.xml │ │ │ │ └── {DB21D029-D31B-4B26-8959-78E00AE70D42} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ └── User │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - PowerPoint 2013 │ │ │ │ ├── manifest.xml │ │ │ │ └── {1F0712AD-A34D-4810-BA2F-26B272241B25} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ └── User │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - PowerPoint 2016 │ │ │ │ ├── manifest.xml │ │ │ │ └── {68564B4C-9D3E-43AC-8FDD-C466E0E51A43} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ └── User │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Project 2013 │ │ │ │ ├── manifest.xml │ │ │ │ └── {0174EA13-07BA-4D00-B4C7-0ED1C5B01B63} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ └── User │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Project 2016 │ │ │ │ ├── manifest.xml │ │ │ │ └── {115DD7FC-7EAB-481E-B5C6-2389371A9EA6} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ └── User │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Publisher 2013 │ │ │ │ ├── manifest.xml │ │ │ │ └── {6431CF18-403D-4DEC-AF23-BCB18292E78A} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ └── User │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Publisher 2016 │ │ │ │ ├── manifest.xml │ │ │ │ └── {2CDF1274-91B5-448A-A1E7-1738E2B65B54} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ └── User │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Skype for Business 2016 │ │ │ │ ├── manifest.xml │ │ │ │ └── {9FAC973D-4597-4D3F-B55B-14214DE8360C} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ └── Machine │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Visio 2013 │ │ │ │ ├── manifest.xml │ │ │ │ └── {3F89AF67-6543-4F46-AA10-8A69C27BC416} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ └── User │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Visio 2016 │ │ │ │ ├── manifest.xml │ │ │ │ └── {FAD99305-2EF7-4F42-9A41-C810887C2694} │ │ │ │ │ ├── Backup.xml │ │ │ │ │ ├── DomainSysvol │ │ │ │ │ └── GPO │ │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ │ └── User │ │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ │ └── registry.pol │ │ │ │ │ ├── bkupInfo.xml │ │ │ │ │ └── gpreport.xml │ │ │ └── DoD - Word 2013 │ │ │ │ ├── manifest.xml │ │ │ │ └── {6A934970-3734-4754-9FDF-AA80962CA6A8} │ │ │ │ ├── Backup.xml │ │ │ │ ├── DomainSysvol │ │ │ │ └── GPO │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ └── User │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ └── registry.pol │ │ │ │ ├── bkupInfo.xml │ │ │ │ └── gpreport.xml │ │ └── Windows │ │ │ ├── DoD - Windows Server 2012 R2 DC - Computer │ │ │ ├── manifest.xml │ │ │ └── {F421D38E-AD0D-4F9C-9714-0118F75AFA0A} │ │ │ │ ├── Backup.xml │ │ │ │ ├── DomainSysvol │ │ │ │ └── GPO │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ ├── Machine │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ ├── microsoft │ │ │ │ │ │ └── windows nt │ │ │ │ │ │ │ ├── Audit │ │ │ │ │ │ │ └── audit.csv │ │ │ │ │ │ │ └── SecEdit │ │ │ │ │ │ │ └── GptTmpl.inf │ │ │ │ │ └── registry.pol │ │ │ │ │ └── User │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ └── registry.pol │ │ │ │ ├── bkupInfo.xml │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Windows Server 2012 R2 DC - User │ │ │ ├── manifest.xml │ │ │ └── {646B92F2-1B42-4788-89B5-1960E48A4297} │ │ │ │ ├── Backup.xml │ │ │ │ ├── DomainSysvol │ │ │ │ └── GPO │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ └── User │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ └── registry.pol │ │ │ │ ├── bkupInfo.xml │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Windows Server 2012 R2 MS - Computer │ │ │ ├── manifest.xml │ │ │ └── {EF232375-712B-4587-8F15-9F8DC208981D} │ │ │ │ ├── Backup.xml │ │ │ │ ├── DomainSysvol │ │ │ │ └── GPO │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ └── Machine │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ ├── microsoft │ │ │ │ │ └── windows nt │ │ │ │ │ │ ├── Audit │ │ │ │ │ │ └── audit.csv │ │ │ │ │ │ └── SecEdit │ │ │ │ │ │ └── GptTmpl.inf │ │ │ │ │ └── registry.pol │ │ │ │ ├── bkupInfo.xml │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Windows Server 2012 R2 MS - User │ │ │ ├── manifest.xml │ │ │ └── {FE7C5CC8-7170-4453-81B1-3778BE03B266} │ │ │ │ ├── Backup.xml │ │ │ │ ├── DomainSysvol │ │ │ │ └── GPO │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ └── User │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ └── registry.pol │ │ │ │ ├── bkupInfo.xml │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Windows Server 2016 DC - Computer │ │ │ ├── manifest.xml │ │ │ └── {D957C59A-75FE-44F3-8586-608B4DD74187} │ │ │ │ ├── Backup.xml │ │ │ │ ├── DomainSysvol │ │ │ │ └── GPO │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ └── Machine │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ ├── microsoft │ │ │ │ │ └── windows nt │ │ │ │ │ │ ├── Audit │ │ │ │ │ │ └── audit.csv │ │ │ │ │ │ └── SecEdit │ │ │ │ │ │ └── GptTmpl.inf │ │ │ │ │ └── registry.pol │ │ │ │ ├── bkupInfo.xml │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Windows Server 2016 DC - User │ │ │ ├── manifest.xml │ │ │ └── {2A2AB595-D695-4DBA-AB76-A1EEC92BAF8B} │ │ │ │ ├── Backup.xml │ │ │ │ ├── DomainSysvol │ │ │ │ └── GPO │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ └── User │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ └── registry.pol │ │ │ │ ├── bkupInfo.xml │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Windows Server 2016 MS - Computer │ │ │ ├── manifest.xml │ │ │ └── {1FD3A240-8662-4689-B586-DDAD6AD3C46A} │ │ │ │ ├── Backup.xml │ │ │ │ ├── DomainSysvol │ │ │ │ └── GPO │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ └── Machine │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ ├── microsoft │ │ │ │ │ └── windows nt │ │ │ │ │ │ ├── Audit │ │ │ │ │ │ └── audit.csv │ │ │ │ │ │ └── SecEdit │ │ │ │ │ │ └── GptTmpl.inf │ │ │ │ │ └── registry.pol │ │ │ │ ├── bkupInfo.xml │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Windows Server 2016 MS - User │ │ │ ├── manifest.xml │ │ │ └── {FB37B9E4-10C3-44CF-82FB-56F3D1C85635} │ │ │ │ ├── Backup.xml │ │ │ │ ├── DomainSysvol │ │ │ │ └── GPO │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ └── User │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ └── registry.pol │ │ │ │ ├── bkupInfo.xml │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Windows Server 2019 DC - Computer │ │ │ ├── manifest.xml │ │ │ └── {B8BA60A1-5C5D-43A8-B66E-8C78092B4BFE} │ │ │ │ ├── Backup.xml │ │ │ │ ├── DomainSysvol │ │ │ │ └── GPO │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ └── Machine │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ ├── microsoft │ │ │ │ │ └── windows nt │ │ │ │ │ │ ├── Audit │ │ │ │ │ │ └── audit.csv │ │ │ │ │ │ └── SecEdit │ │ │ │ │ │ └── GptTmpl.inf │ │ │ │ │ └── registry.pol │ │ │ │ ├── bkupInfo.xml │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Windows Server 2019 DC - User │ │ │ ├── manifest.xml │ │ │ └── {3B82ECB5-D399-4D1B-89E3-E65ABE88A2C4} │ │ │ │ ├── Backup.xml │ │ │ │ ├── DomainSysvol │ │ │ │ └── GPO │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ └── User │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ └── registry.pol │ │ │ │ ├── bkupInfo.xml │ │ │ │ └── gpreport.xml │ │ │ ├── DoD - Windows Server 2019 MS - Computer │ │ │ ├── manifest.xml │ │ │ └── {98D0B744-8E34-41D1-AD1B-824A6750F078} │ │ │ │ ├── Backup.xml │ │ │ │ ├── DomainSysvol │ │ │ │ └── GPO │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ └── Machine │ │ │ │ │ ├── comment.cmtx │ │ │ │ │ ├── microsoft │ │ │ │ │ └── windows nt │ │ │ │ │ │ ├── Audit │ │ │ │ │ │ └── audit.csv │ │ │ │ │ │ └── SecEdit │ │ │ │ │ │ └── GptTmpl.inf │ │ │ │ │ └── registry.pol │ │ │ │ ├── bkupInfo.xml │ │ │ │ └── gpreport.xml │ │ │ └── DoD - Windows Server 2019 MS - User │ │ │ ├── manifest.xml │ │ │ └── {F303E735-3DD5-45F5-821B-F159BD2C14AB} │ │ │ ├── Backup.xml │ │ │ ├── DomainSysvol │ │ │ └── GPO │ │ │ │ ├── GPO.cmt │ │ │ │ └── User │ │ │ │ ├── comment.cmtx │ │ │ │ └── registry.pol │ │ │ ├── bkupInfo.xml │ │ │ └── gpreport.xml │ ├── NSACyber │ │ ├── Applocker │ │ │ └── NSACyber - Applocker (Audit) │ │ │ │ ├── manifest.xml │ │ │ │ └── {492BD621-FD45-4996-BB17-3C9284759736} │ │ │ │ ├── Backup.xml │ │ │ │ ├── DomainSysvol │ │ │ │ └── GPO │ │ │ │ │ ├── GPO.cmt │ │ │ │ │ └── Machine │ │ │ │ │ ├── microsoft │ │ │ │ │ └── windows nt │ │ │ │ │ │ └── SecEdit │ │ │ │ │ │ └── GptTmpl.inf │ │ │ │ │ └── registry.pol │ │ │ │ ├── bkupInfo.xml │ │ │ │ └── gpreport.xml │ │ └── Bitlocker │ │ │ └── NSACyber - BitLocker │ │ │ ├── manifest.xml │ │ │ └── {6C3C0177-281F-4547-89D7-66347525E1C2} │ │ │ ├── Backup.xml │ │ │ ├── DomainSysvol │ │ │ └── GPO │ │ │ │ ├── GPO.cmt │ │ │ │ └── Machine │ │ │ │ ├── comment.cmtx │ │ │ │ └── registry.pol │ │ │ ├── bkupInfo.xml │ │ │ └── gpreport.xml │ └── SoS │ │ ├── FireFox │ │ └── SOS - FireFox STIG │ │ │ └── {BF932DFE-99E7-4DDC-9CB7-5DEA3AEE4074} │ │ │ ├── Backup.xml │ │ │ ├── DomainSysvol │ │ │ └── GPO │ │ │ │ ├── GPO.cmt │ │ │ │ └── Machine │ │ │ │ ├── Microsoft │ │ │ │ └── Windows NT │ │ │ │ │ └── SecEdit │ │ │ │ │ └── GptTmpl.inf │ │ │ │ ├── comment.cmtx │ │ │ │ └── registry.pol │ │ │ ├── bkupInfo.xml │ │ │ └── gpreport.xml │ │ └── Onedrive │ │ └── SOS - OneDrive │ │ ├── manifest.xml │ │ └── {E789BABB-ED85-4F31-8014-138B799CA521} │ │ ├── Backup.xml │ │ ├── DomainSysvol │ │ └── GPO │ │ │ ├── GPO.cmt │ │ │ ├── Machine │ │ │ ├── Microsoft │ │ │ │ └── Windows NT │ │ │ │ │ └── SecEdit │ │ │ │ │ └── GptTmpl.inf │ │ │ ├── comment.cmtx │ │ │ └── registry.pol │ │ │ └── User │ │ │ ├── comment.cmtx │ │ │ └── registry.pol │ │ ├── bkupInfo.xml │ │ └── gpreport.xml ├── JAVA Configuration Files │ ├── deployment.config │ ├── deployment.properties │ └── exception.sites ├── LGPO │ ├── LGPO.exe │ └── LGPO.pdf └── Windows Defender Configuration Files │ ├── DOD_EP_V3.xml │ ├── WDAC_V1_Audit.xml │ ├── WDAC_V1_Default_Audit.xml │ ├── WDAC_V1_Default_Enforced.xml │ ├── WDAC_V1_Enforced.xml │ ├── WDAC_V1_Recommended_Audit.xml │ └── WDAC_V1_Recommended_Enforced.xml ├── LICENSE ├── README.md └── sos-secure-standalone-server.ps1 /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/devskim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/.github/workflows/devskim.yml -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.github/workflows/label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/.github/workflows/label.yml -------------------------------------------------------------------------------- /.github/workflows/ossar-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/.github/workflows/ossar-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/powershell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/.github/workflows/powershell.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/test-with-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/.github/workflows/test-with-docker.yml -------------------------------------------------------------------------------- /.github/workflows/virustotal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/.github/workflows/virustotal.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Dockerfile -------------------------------------------------------------------------------- /Files/.Net Configuration Files/secure.machine-v2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/.Net Configuration Files/secure.machine-v2.config -------------------------------------------------------------------------------- /Files/.Net Configuration Files/secure.machine-v4.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/.Net Configuration Files/secure.machine-v4.config -------------------------------------------------------------------------------- /Files/Auditing/auditbaseline.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/Auditing/auditbaseline.csv -------------------------------------------------------------------------------- /Files/FireFox Configuration Files/defaults/pref/local-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/FireFox Configuration Files/defaults/pref/local-settings.js -------------------------------------------------------------------------------- /Files/FireFox Configuration Files/local-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/FireFox Configuration Files/local-settings.js -------------------------------------------------------------------------------- /Files/FireFox Configuration Files/mozilla.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/FireFox Configuration Files/mozilla.cfg -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Pro DC Cont. - Computer/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Pro DC Cont. - Computer/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Pro DC Cont. - Computer/{E7DD3E29-5119-450A-8AC8-6F05978AE354}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Pro DC Cont. - Computer/{E7DD3E29-5119-450A-8AC8-6F05978AE354}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Pro DC Cont. - Computer/{E7DD3E29-5119-450A-8AC8-6F05978AE354}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Pro DC Cont. - Computer/{E7DD3E29-5119-450A-8AC8-6F05978AE354}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Pro DC Cont. - Computer/{E7DD3E29-5119-450A-8AC8-6F05978AE354}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Pro DC Cont. - Computer/{E7DD3E29-5119-450A-8AC8-6F05978AE354}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Pro DC Cont. - Computer/{E7DD3E29-5119-450A-8AC8-6F05978AE354}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Pro DC Cont. - Computer/{E7DD3E29-5119-450A-8AC8-6F05978AE354}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Pro DC Cont. - Computer/{E7DD3E29-5119-450A-8AC8-6F05978AE354}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Pro DC Cont. - Computer/{E7DD3E29-5119-450A-8AC8-6F05978AE354}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Pro DC Cont. - Computer/{E7DD3E29-5119-450A-8AC8-6F05978AE354}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Pro DC Cont. - Computer/{E7DD3E29-5119-450A-8AC8-6F05978AE354}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Pro DC Cont. - User/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Pro DC Cont. - User/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Pro DC Cont. - User/{A13B5A61-9DF7-476C-BA36-6BA0933AAB49}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Pro DC Cont. - User/{A13B5A61-9DF7-476C-BA36-6BA0933AAB49}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Pro DC Cont. - User/{A13B5A61-9DF7-476C-BA36-6BA0933AAB49}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Pro DC Cont. - User/{A13B5A61-9DF7-476C-BA36-6BA0933AAB49}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Pro DC Cont. - User/{A13B5A61-9DF7-476C-BA36-6BA0933AAB49}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Pro DC Cont. - User/{A13B5A61-9DF7-476C-BA36-6BA0933AAB49}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Pro DC Cont. - User/{A13B5A61-9DF7-476C-BA36-6BA0933AAB49}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Pro DC Cont. - User/{A13B5A61-9DF7-476C-BA36-6BA0933AAB49}/DomainSysvol/GPO/User/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Pro DC Cont. - User/{A13B5A61-9DF7-476C-BA36-6BA0933AAB49}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Pro DC Cont. - User/{A13B5A61-9DF7-476C-BA36-6BA0933AAB49}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Pro DC Cont. - User/{A13B5A61-9DF7-476C-BA36-6BA0933AAB49}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Pro DC Cont. - User/{A13B5A61-9DF7-476C-BA36-6BA0933AAB49}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - Computer/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - Computer/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - Computer/{E6DD3B56-5369-42F5-9822-D2FD32BED15F}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - Computer/{E6DD3B56-5369-42F5-9822-D2FD32BED15F}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - Computer/{E6DD3B56-5369-42F5-9822-D2FD32BED15F}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - Computer/{E6DD3B56-5369-42F5-9822-D2FD32BED15F}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - Computer/{E6DD3B56-5369-42F5-9822-D2FD32BED15F}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - Computer/{E6DD3B56-5369-42F5-9822-D2FD32BED15F}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - Computer/{E6DD3B56-5369-42F5-9822-D2FD32BED15F}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - Computer/{E6DD3B56-5369-42F5-9822-D2FD32BED15F}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - Computer/{E6DD3B56-5369-42F5-9822-D2FD32BED15F}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - Computer/{E6DD3B56-5369-42F5-9822-D2FD32BED15F}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - Computer/{E6DD3B56-5369-42F5-9822-D2FD32BED15F}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- 1 | PReg -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - Computer/{E6DD3B56-5369-42F5-9822-D2FD32BED15F}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - Computer/{E6DD3B56-5369-42F5-9822-D2FD32BED15F}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - Computer/{E6DD3B56-5369-42F5-9822-D2FD32BED15F}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - Computer/{E6DD3B56-5369-42F5-9822-D2FD32BED15F}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - User/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - User/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - User/{A0FEF3FE-13FD-45F4-B345-F295BB8A2349}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - User/{A0FEF3FE-13FD-45F4-B345-F295BB8A2349}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - User/{A0FEF3FE-13FD-45F4-B345-F295BB8A2349}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - User/{A0FEF3FE-13FD-45F4-B345-F295BB8A2349}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - User/{A0FEF3FE-13FD-45F4-B345-F295BB8A2349}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - User/{A0FEF3FE-13FD-45F4-B345-F295BB8A2349}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - User/{A0FEF3FE-13FD-45F4-B345-F295BB8A2349}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- 1 | PReg -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - User/{A0FEF3FE-13FD-45F4-B345-F295BB8A2349}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - User/{A0FEF3FE-13FD-45F4-B345-F295BB8A2349}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - User/{A0FEF3FE-13FD-45F4-B345-F295BB8A2349}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - User/{A0FEF3FE-13FD-45F4-B345-F295BB8A2349}/DomainSysvol/GPO/User/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - User/{A0FEF3FE-13FD-45F4-B345-F295BB8A2349}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - User/{A0FEF3FE-13FD-45F4-B345-F295BB8A2349}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - User/{A0FEF3FE-13FD-45F4-B345-F295BB8A2349}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Adobe/DoD - Adobe Acrobat Reader DC Cont. - User/{A0FEF3FE-13FD-45F4-B345-F295BB8A2349}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Chrome/DoD - Google Chrome/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Chrome/DoD - Google Chrome/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Chrome/DoD - Google Chrome/{422A8419-0D1C-4178-8C9E-AD62D519918E}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Chrome/DoD - Google Chrome/{422A8419-0D1C-4178-8C9E-AD62D519918E}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Chrome/DoD - Google Chrome/{422A8419-0D1C-4178-8C9E-AD62D519918E}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Chrome/DoD - Google Chrome/{422A8419-0D1C-4178-8C9E-AD62D519918E}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Chrome/DoD - Google Chrome/{422A8419-0D1C-4178-8C9E-AD62D519918E}/DomainSysvol/GPO/Machine/Microsoft/Windows NT/SecEdit/GptTmpl.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Chrome/DoD - Google Chrome/{422A8419-0D1C-4178-8C9E-AD62D519918E}/DomainSysvol/GPO/Machine/Microsoft/Windows NT/SecEdit/GptTmpl.inf -------------------------------------------------------------------------------- /Files/GPOs/DoD/Chrome/DoD - Google Chrome/{422A8419-0D1C-4178-8C9E-AD62D519918E}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Chrome/DoD - Google Chrome/{422A8419-0D1C-4178-8C9E-AD62D519918E}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Chrome/DoD - Google Chrome/{422A8419-0D1C-4178-8C9E-AD62D519918E}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Chrome/DoD - Google Chrome/{422A8419-0D1C-4178-8C9E-AD62D519918E}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Chrome/DoD - Google Chrome/{422A8419-0D1C-4178-8C9E-AD62D519918E}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Chrome/DoD - Google Chrome/{422A8419-0D1C-4178-8C9E-AD62D519918E}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Chrome/DoD - Google Chrome/{422A8419-0D1C-4178-8C9E-AD62D519918E}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Chrome/DoD - Google Chrome/{422A8419-0D1C-4178-8C9E-AD62D519918E}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Defender/DoD - Windows Defender/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Defender/DoD - Windows Defender/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Defender/DoD - Windows Defender/{05631C57-8B78-4397-9A62-D57DB98EEB08}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Defender/DoD - Windows Defender/{05631C57-8B78-4397-9A62-D57DB98EEB08}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Defender/DoD - Windows Defender/{05631C57-8B78-4397-9A62-D57DB98EEB08}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Defender/DoD - Windows Defender/{05631C57-8B78-4397-9A62-D57DB98EEB08}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Defender/DoD - Windows Defender/{05631C57-8B78-4397-9A62-D57DB98EEB08}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Defender/DoD - Windows Defender/{05631C57-8B78-4397-9A62-D57DB98EEB08}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Defender/DoD - Windows Defender/{05631C57-8B78-4397-9A62-D57DB98EEB08}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Defender/DoD - Windows Defender/{05631C57-8B78-4397-9A62-D57DB98EEB08}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Defender/DoD - Windows Defender/{05631C57-8B78-4397-9A62-D57DB98EEB08}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Defender/DoD - Windows Defender/{05631C57-8B78-4397-9A62-D57DB98EEB08}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Defender/DoD - Windows Defender/{05631C57-8B78-4397-9A62-D57DB98EEB08}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Defender/DoD - Windows Defender/{05631C57-8B78-4397-9A62-D57DB98EEB08}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Edge/DoD - Microsoft Chromium Edge/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Edge/DoD - Microsoft Chromium Edge/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Edge/DoD - Microsoft Chromium Edge/{FBA412D1-D7F4-49D6-848C-CBFDC3250850}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Edge/DoD - Microsoft Chromium Edge/{FBA412D1-D7F4-49D6-848C-CBFDC3250850}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Edge/DoD - Microsoft Chromium Edge/{FBA412D1-D7F4-49D6-848C-CBFDC3250850}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Edge/DoD - Microsoft Chromium Edge/{FBA412D1-D7F4-49D6-848C-CBFDC3250850}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Edge/DoD - Microsoft Chromium Edge/{FBA412D1-D7F4-49D6-848C-CBFDC3250850}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Edge/DoD - Microsoft Chromium Edge/{FBA412D1-D7F4-49D6-848C-CBFDC3250850}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Edge/DoD - Microsoft Chromium Edge/{FBA412D1-D7F4-49D6-848C-CBFDC3250850}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Edge/DoD - Microsoft Chromium Edge/{FBA412D1-D7F4-49D6-848C-CBFDC3250850}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Edge/DoD - Microsoft Chromium Edge/{FBA412D1-D7F4-49D6-848C-CBFDC3250850}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Edge/DoD - Microsoft Chromium Edge/{FBA412D1-D7F4-49D6-848C-CBFDC3250850}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Edge/DoD - Microsoft Chromium Edge/{FBA412D1-D7F4-49D6-848C-CBFDC3250850}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- 1 | PReg -------------------------------------------------------------------------------- /Files/GPOs/DoD/Edge/DoD - Microsoft Chromium Edge/{FBA412D1-D7F4-49D6-848C-CBFDC3250850}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Edge/DoD - Microsoft Chromium Edge/{FBA412D1-D7F4-49D6-848C-CBFDC3250850}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Edge/DoD - Microsoft Chromium Edge/{FBA412D1-D7F4-49D6-848C-CBFDC3250850}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Edge/DoD - Microsoft Chromium Edge/{FBA412D1-D7F4-49D6-848C-CBFDC3250850}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/FireFox/DoD - Mozilla FireFox/{51EA0DC4-8D24-4491-B825-CF067628EAB3}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/FireFox/DoD - Mozilla FireFox/{51EA0DC4-8D24-4491-B825-CF067628EAB3}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/FireFox/DoD - Mozilla FireFox/{51EA0DC4-8D24-4491-B825-CF067628EAB3}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/FireFox/DoD - Mozilla FireFox/{51EA0DC4-8D24-4491-B825-CF067628EAB3}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/FireFox/DoD - Mozilla FireFox/{51EA0DC4-8D24-4491-B825-CF067628EAB3}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/FireFox/DoD - Mozilla FireFox/{51EA0DC4-8D24-4491-B825-CF067628EAB3}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/FireFox/DoD - Mozilla FireFox/{51EA0DC4-8D24-4491-B825-CF067628EAB3}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/FireFox/DoD - Mozilla FireFox/{51EA0DC4-8D24-4491-B825-CF067628EAB3}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/FireFox/DoD - Mozilla FireFox/{51EA0DC4-8D24-4491-B825-CF067628EAB3}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/FireFox/DoD - Mozilla FireFox/{51EA0DC4-8D24-4491-B825-CF067628EAB3}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/FireFox/DoD - Mozilla FireFox/{51EA0DC4-8D24-4491-B825-CF067628EAB3}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/FireFox/DoD - Mozilla FireFox/{51EA0DC4-8D24-4491-B825-CF067628EAB3}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Firewall/DoD - Windows Firewall/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Firewall/DoD - Windows Firewall/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Firewall/DoD - Windows Firewall/{F089F2A4-6D59-42DA-8DF9-2A9AC7709341}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Firewall/DoD - Windows Firewall/{F089F2A4-6D59-42DA-8DF9-2A9AC7709341}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Firewall/DoD - Windows Firewall/{F089F2A4-6D59-42DA-8DF9-2A9AC7709341}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Firewall/DoD - Windows Firewall/{F089F2A4-6D59-42DA-8DF9-2A9AC7709341}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Firewall/DoD - Windows Firewall/{F089F2A4-6D59-42DA-8DF9-2A9AC7709341}/DomainSysvol/GPO/Machine/Microsoft/Windows NT/SecEdit/GptTmpl.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Firewall/DoD - Windows Firewall/{F089F2A4-6D59-42DA-8DF9-2A9AC7709341}/DomainSysvol/GPO/Machine/Microsoft/Windows NT/SecEdit/GptTmpl.inf -------------------------------------------------------------------------------- /Files/GPOs/DoD/Firewall/DoD - Windows Firewall/{F089F2A4-6D59-42DA-8DF9-2A9AC7709341}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Firewall/DoD - Windows Firewall/{F089F2A4-6D59-42DA-8DF9-2A9AC7709341}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Firewall/DoD - Windows Firewall/{F089F2A4-6D59-42DA-8DF9-2A9AC7709341}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Firewall/DoD - Windows Firewall/{F089F2A4-6D59-42DA-8DF9-2A9AC7709341}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Firewall/DoD - Windows Firewall/{F089F2A4-6D59-42DA-8DF9-2A9AC7709341}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Firewall/DoD - Windows Firewall/{F089F2A4-6D59-42DA-8DF9-2A9AC7709341}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Horizon/DoD - Horizon Agent/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Horizon/DoD - Horizon Agent/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Horizon/DoD - Horizon Agent/{00DF50DE-3118-4401-814A-0D2FBEB33BAB}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Horizon/DoD - Horizon Agent/{00DF50DE-3118-4401-814A-0D2FBEB33BAB}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Horizon/DoD - Horizon Agent/{00DF50DE-3118-4401-814A-0D2FBEB33BAB}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Horizon/DoD - Horizon Agent/{00DF50DE-3118-4401-814A-0D2FBEB33BAB}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Horizon/DoD - Horizon Agent/{00DF50DE-3118-4401-814A-0D2FBEB33BAB}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Horizon/DoD - Horizon Agent/{00DF50DE-3118-4401-814A-0D2FBEB33BAB}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Horizon/DoD - Horizon Agent/{00DF50DE-3118-4401-814A-0D2FBEB33BAB}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Horizon/DoD - Horizon Agent/{00DF50DE-3118-4401-814A-0D2FBEB33BAB}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Horizon/DoD - Horizon Agent/{00DF50DE-3118-4401-814A-0D2FBEB33BAB}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Horizon/DoD - Horizon Agent/{00DF50DE-3118-4401-814A-0D2FBEB33BAB}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Horizon/DoD - Horizon Agent/{00DF50DE-3118-4401-814A-0D2FBEB33BAB}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Horizon/DoD - Horizon Agent/{00DF50DE-3118-4401-814A-0D2FBEB33BAB}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Horizon/DoD - Horizon Client/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Horizon/DoD - Horizon Client/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Horizon/DoD - Horizon Client/{05D5A3EA-95FA-4294-A5BC-4ABFAABE8EE1}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Horizon/DoD - Horizon Client/{05D5A3EA-95FA-4294-A5BC-4ABFAABE8EE1}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Horizon/DoD - Horizon Client/{05D5A3EA-95FA-4294-A5BC-4ABFAABE8EE1}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Horizon/DoD - Horizon Client/{05D5A3EA-95FA-4294-A5BC-4ABFAABE8EE1}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Horizon/DoD - Horizon Client/{05D5A3EA-95FA-4294-A5BC-4ABFAABE8EE1}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Horizon/DoD - Horizon Client/{05D5A3EA-95FA-4294-A5BC-4ABFAABE8EE1}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Horizon/DoD - Horizon Client/{05D5A3EA-95FA-4294-A5BC-4ABFAABE8EE1}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Horizon/DoD - Horizon Client/{05D5A3EA-95FA-4294-A5BC-4ABFAABE8EE1}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Horizon/DoD - Horizon Client/{05D5A3EA-95FA-4294-A5BC-4ABFAABE8EE1}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Horizon/DoD - Horizon Client/{05D5A3EA-95FA-4294-A5BC-4ABFAABE8EE1}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Horizon/DoD - Horizon Client/{05D5A3EA-95FA-4294-A5BC-4ABFAABE8EE1}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Horizon/DoD - Horizon Client/{05D5A3EA-95FA-4294-A5BC-4ABFAABE8EE1}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/IE11/DoD - Internet Explorer 11 - Computer/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/IE11/DoD - Internet Explorer 11 - Computer/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/IE11/DoD - Internet Explorer 11 - Computer/{E2D06306-79E7-430C-969D-5A07D212D0EB}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/IE11/DoD - Internet Explorer 11 - Computer/{E2D06306-79E7-430C-969D-5A07D212D0EB}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/IE11/DoD - Internet Explorer 11 - Computer/{E2D06306-79E7-430C-969D-5A07D212D0EB}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/IE11/DoD - Internet Explorer 11 - Computer/{E2D06306-79E7-430C-969D-5A07D212D0EB}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/IE11/DoD - Internet Explorer 11 - Computer/{E2D06306-79E7-430C-969D-5A07D212D0EB}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/IE11/DoD - Internet Explorer 11 - Computer/{E2D06306-79E7-430C-969D-5A07D212D0EB}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/IE11/DoD - Internet Explorer 11 - Computer/{E2D06306-79E7-430C-969D-5A07D212D0EB}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/IE11/DoD - Internet Explorer 11 - Computer/{E2D06306-79E7-430C-969D-5A07D212D0EB}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/IE11/DoD - Internet Explorer 11 - Computer/{E2D06306-79E7-430C-969D-5A07D212D0EB}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/IE11/DoD - Internet Explorer 11 - Computer/{E2D06306-79E7-430C-969D-5A07D212D0EB}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/IE11/DoD - Internet Explorer 11 - Computer/{E2D06306-79E7-430C-969D-5A07D212D0EB}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/IE11/DoD - Internet Explorer 11 - Computer/{E2D06306-79E7-430C-969D-5A07D212D0EB}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/IE11/DoD - Internet Explorer 11 - User/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/IE11/DoD - Internet Explorer 11 - User/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/IE11/DoD - Internet Explorer 11 - User/{A0BC1714-C6A6-411E-8383-34182EDB6149}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/IE11/DoD - Internet Explorer 11 - User/{A0BC1714-C6A6-411E-8383-34182EDB6149}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/IE11/DoD - Internet Explorer 11 - User/{A0BC1714-C6A6-411E-8383-34182EDB6149}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/IE11/DoD - Internet Explorer 11 - User/{A0BC1714-C6A6-411E-8383-34182EDB6149}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/IE11/DoD - Internet Explorer 11 - User/{A0BC1714-C6A6-411E-8383-34182EDB6149}/DomainSysvol/GPO/User/Preferences/Registry/Registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/IE11/DoD - Internet Explorer 11 - User/{A0BC1714-C6A6-411E-8383-34182EDB6149}/DomainSysvol/GPO/User/Preferences/Registry/Registry.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/IE11/DoD - Internet Explorer 11 - User/{A0BC1714-C6A6-411E-8383-34182EDB6149}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/IE11/DoD - Internet Explorer 11 - User/{A0BC1714-C6A6-411E-8383-34182EDB6149}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/IE11/DoD - Internet Explorer 11 - User/{A0BC1714-C6A6-411E-8383-34182EDB6149}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/IE11/DoD - Internet Explorer 11 - User/{A0BC1714-C6A6-411E-8383-34182EDB6149}/DomainSysvol/GPO/User/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/IE11/DoD - Internet Explorer 11 - User/{A0BC1714-C6A6-411E-8383-34182EDB6149}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/IE11/DoD - Internet Explorer 11 - User/{A0BC1714-C6A6-411E-8383-34182EDB6149}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/IE11/DoD - Internet Explorer 11 - User/{A0BC1714-C6A6-411E-8383-34182EDB6149}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/IE11/DoD - Internet Explorer 11 - User/{A0BC1714-C6A6-411E-8383-34182EDB6149}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Access 2013/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Access 2013/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Access 2013/{607FAF67-1276-4684-82F8-06A8400A4E57}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Access 2013/{607FAF67-1276-4684-82F8-06A8400A4E57}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Access 2013/{607FAF67-1276-4684-82F8-06A8400A4E57}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Access 2013/{607FAF67-1276-4684-82F8-06A8400A4E57}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Access 2013/{607FAF67-1276-4684-82F8-06A8400A4E57}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Access 2013/{607FAF67-1276-4684-82F8-06A8400A4E57}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Access 2013/{607FAF67-1276-4684-82F8-06A8400A4E57}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Access 2013/{607FAF67-1276-4684-82F8-06A8400A4E57}/DomainSysvol/GPO/User/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Access 2013/{607FAF67-1276-4684-82F8-06A8400A4E57}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Access 2013/{607FAF67-1276-4684-82F8-06A8400A4E57}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Access 2013/{607FAF67-1276-4684-82F8-06A8400A4E57}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Access 2013/{607FAF67-1276-4684-82F8-06A8400A4E57}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Access 2016/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Access 2016/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Access 2016/{F2C58942-558E-4F18-B27E-BA5F47BA569F}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Access 2016/{F2C58942-558E-4F18-B27E-BA5F47BA569F}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Access 2016/{F2C58942-558E-4F18-B27E-BA5F47BA569F}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Access 2016/{F2C58942-558E-4F18-B27E-BA5F47BA569F}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Access 2016/{F2C58942-558E-4F18-B27E-BA5F47BA569F}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Access 2016/{F2C58942-558E-4F18-B27E-BA5F47BA569F}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Access 2016/{F2C58942-558E-4F18-B27E-BA5F47BA569F}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Access 2016/{F2C58942-558E-4F18-B27E-BA5F47BA569F}/DomainSysvol/GPO/User/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Access 2016/{F2C58942-558E-4F18-B27E-BA5F47BA569F}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Access 2016/{F2C58942-558E-4F18-B27E-BA5F47BA569F}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Access 2016/{F2C58942-558E-4F18-B27E-BA5F47BA569F}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Access 2016/{F2C58942-558E-4F18-B27E-BA5F47BA569F}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Excel 2013/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Excel 2013/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Excel 2013/{E9FBEB8F-F375-44A1-A0ED-28244A133B53}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Excel 2013/{E9FBEB8F-F375-44A1-A0ED-28244A133B53}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Excel 2013/{E9FBEB8F-F375-44A1-A0ED-28244A133B53}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Excel 2013/{E9FBEB8F-F375-44A1-A0ED-28244A133B53}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Excel 2013/{E9FBEB8F-F375-44A1-A0ED-28244A133B53}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Excel 2013/{E9FBEB8F-F375-44A1-A0ED-28244A133B53}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Excel 2013/{E9FBEB8F-F375-44A1-A0ED-28244A133B53}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Excel 2013/{E9FBEB8F-F375-44A1-A0ED-28244A133B53}/DomainSysvol/GPO/User/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Excel 2013/{E9FBEB8F-F375-44A1-A0ED-28244A133B53}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Excel 2013/{E9FBEB8F-F375-44A1-A0ED-28244A133B53}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Excel 2013/{E9FBEB8F-F375-44A1-A0ED-28244A133B53}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Excel 2013/{E9FBEB8F-F375-44A1-A0ED-28244A133B53}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Excel 2016/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Excel 2016/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Excel 2016/{BFE5D71C-9593-4A5E-953D-E9F676831A0E}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Excel 2016/{BFE5D71C-9593-4A5E-953D-E9F676831A0E}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Excel 2016/{BFE5D71C-9593-4A5E-953D-E9F676831A0E}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Excel 2016/{BFE5D71C-9593-4A5E-953D-E9F676831A0E}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Excel 2016/{BFE5D71C-9593-4A5E-953D-E9F676831A0E}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Excel 2016/{BFE5D71C-9593-4A5E-953D-E9F676831A0E}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Excel 2016/{BFE5D71C-9593-4A5E-953D-E9F676831A0E}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Excel 2016/{BFE5D71C-9593-4A5E-953D-E9F676831A0E}/DomainSysvol/GPO/User/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Excel 2016/{BFE5D71C-9593-4A5E-953D-E9F676831A0E}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Excel 2016/{BFE5D71C-9593-4A5E-953D-E9F676831A0E}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Excel 2016/{BFE5D71C-9593-4A5E-953D-E9F676831A0E}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Excel 2016/{BFE5D71C-9593-4A5E-953D-E9F676831A0E}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Infopath 2013 - Computer/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Infopath 2013 - Computer/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Infopath 2013 - Computer/{829AF667-FE0F-4740-B308-64A33D81724B}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Infopath 2013 - Computer/{829AF667-FE0F-4740-B308-64A33D81724B}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Infopath 2013 - Computer/{829AF667-FE0F-4740-B308-64A33D81724B}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Infopath 2013 - Computer/{829AF667-FE0F-4740-B308-64A33D81724B}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Infopath 2013 - Computer/{829AF667-FE0F-4740-B308-64A33D81724B}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Infopath 2013 - Computer/{829AF667-FE0F-4740-B308-64A33D81724B}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Infopath 2013 - Computer/{829AF667-FE0F-4740-B308-64A33D81724B}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Infopath 2013 - Computer/{829AF667-FE0F-4740-B308-64A33D81724B}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Infopath 2013 - Computer/{829AF667-FE0F-4740-B308-64A33D81724B}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Infopath 2013 - Computer/{829AF667-FE0F-4740-B308-64A33D81724B}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Infopath 2013 - Computer/{829AF667-FE0F-4740-B308-64A33D81724B}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- 1 | PReg -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Infopath 2013 - Computer/{829AF667-FE0F-4740-B308-64A33D81724B}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Infopath 2013 - Computer/{829AF667-FE0F-4740-B308-64A33D81724B}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Infopath 2013 - Computer/{829AF667-FE0F-4740-B308-64A33D81724B}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Infopath 2013 - Computer/{829AF667-FE0F-4740-B308-64A33D81724B}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Infopath 2013 - User/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Infopath 2013 - User/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Infopath 2013 - User/{7A19DF08-BD47-4B75-9C61-C5A28652955E}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Infopath 2013 - User/{7A19DF08-BD47-4B75-9C61-C5A28652955E}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Infopath 2013 - User/{7A19DF08-BD47-4B75-9C61-C5A28652955E}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Infopath 2013 - User/{7A19DF08-BD47-4B75-9C61-C5A28652955E}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Infopath 2013 - User/{7A19DF08-BD47-4B75-9C61-C5A28652955E}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Infopath 2013 - User/{7A19DF08-BD47-4B75-9C61-C5A28652955E}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Infopath 2013 - User/{7A19DF08-BD47-4B75-9C61-C5A28652955E}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Infopath 2013 - User/{7A19DF08-BD47-4B75-9C61-C5A28652955E}/DomainSysvol/GPO/User/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Infopath 2013 - User/{7A19DF08-BD47-4B75-9C61-C5A28652955E}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Infopath 2013 - User/{7A19DF08-BD47-4B75-9C61-C5A28652955E}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Infopath 2013 - User/{7A19DF08-BD47-4B75-9C61-C5A28652955E}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Infopath 2013 - User/{7A19DF08-BD47-4B75-9C61-C5A28652955E}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Lync 2013/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Lync 2013/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Lync 2013/{CBB670E0-EDAC-422C-915D-C9C6B940DF25}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Lync 2013/{CBB670E0-EDAC-422C-915D-C9C6B940DF25}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Lync 2013/{CBB670E0-EDAC-422C-915D-C9C6B940DF25}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Lync 2013/{CBB670E0-EDAC-422C-915D-C9C6B940DF25}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Lync 2013/{CBB670E0-EDAC-422C-915D-C9C6B940DF25}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Lync 2013/{CBB670E0-EDAC-422C-915D-C9C6B940DF25}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Lync 2013/{CBB670E0-EDAC-422C-915D-C9C6B940DF25}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Lync 2013/{CBB670E0-EDAC-422C-915D-C9C6B940DF25}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Lync 2013/{CBB670E0-EDAC-422C-915D-C9C6B940DF25}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Lync 2013/{CBB670E0-EDAC-422C-915D-C9C6B940DF25}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Lync 2013/{CBB670E0-EDAC-422C-915D-C9C6B940DF25}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- 1 | PReg -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Lync 2013/{CBB670E0-EDAC-422C-915D-C9C6B940DF25}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Lync 2013/{CBB670E0-EDAC-422C-915D-C9C6B940DF25}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Lync 2013/{CBB670E0-EDAC-422C-915D-C9C6B940DF25}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Lync 2013/{CBB670E0-EDAC-422C-915D-C9C6B940DF25}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2013 System - Computer/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2013 System - Computer/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2013 System - Computer/{0DAB97C1-A90D-4316-AD18-E0E2D3D2552F}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2013 System - Computer/{0DAB97C1-A90D-4316-AD18-E0E2D3D2552F}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2013 System - Computer/{0DAB97C1-A90D-4316-AD18-E0E2D3D2552F}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2013 System - Computer/{0DAB97C1-A90D-4316-AD18-E0E2D3D2552F}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2013 System - Computer/{0DAB97C1-A90D-4316-AD18-E0E2D3D2552F}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2013 System - Computer/{0DAB97C1-A90D-4316-AD18-E0E2D3D2552F}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2013 System - Computer/{0DAB97C1-A90D-4316-AD18-E0E2D3D2552F}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2013 System - Computer/{0DAB97C1-A90D-4316-AD18-E0E2D3D2552F}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2013 System - Computer/{0DAB97C1-A90D-4316-AD18-E0E2D3D2552F}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2013 System - Computer/{0DAB97C1-A90D-4316-AD18-E0E2D3D2552F}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2013 System - Computer/{0DAB97C1-A90D-4316-AD18-E0E2D3D2552F}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- 1 | PReg -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2013 System - Computer/{0DAB97C1-A90D-4316-AD18-E0E2D3D2552F}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2013 System - Computer/{0DAB97C1-A90D-4316-AD18-E0E2D3D2552F}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2013 System - Computer/{0DAB97C1-A90D-4316-AD18-E0E2D3D2552F}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2013 System - Computer/{0DAB97C1-A90D-4316-AD18-E0E2D3D2552F}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2013 System - User/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2013 System - User/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2013 System - User/{E2D2EFA4-A5CB-4296-992F-B5C3FD6D9A6E}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2013 System - User/{E2D2EFA4-A5CB-4296-992F-B5C3FD6D9A6E}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2013 System - User/{E2D2EFA4-A5CB-4296-992F-B5C3FD6D9A6E}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2013 System - User/{E2D2EFA4-A5CB-4296-992F-B5C3FD6D9A6E}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2013 System - User/{E2D2EFA4-A5CB-4296-992F-B5C3FD6D9A6E}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2013 System - User/{E2D2EFA4-A5CB-4296-992F-B5C3FD6D9A6E}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2013 System - User/{E2D2EFA4-A5CB-4296-992F-B5C3FD6D9A6E}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2013 System - User/{E2D2EFA4-A5CB-4296-992F-B5C3FD6D9A6E}/DomainSysvol/GPO/User/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2013 System - User/{E2D2EFA4-A5CB-4296-992F-B5C3FD6D9A6E}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2013 System - User/{E2D2EFA4-A5CB-4296-992F-B5C3FD6D9A6E}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2013 System - User/{E2D2EFA4-A5CB-4296-992F-B5C3FD6D9A6E}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2013 System - User/{E2D2EFA4-A5CB-4296-992F-B5C3FD6D9A6E}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2016 System - Computer/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2016 System - Computer/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2016 System - Computer/{04EC6E63-6996-4B1F-B4C8-8E77ED582F7D}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2016 System - Computer/{04EC6E63-6996-4B1F-B4C8-8E77ED582F7D}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2016 System - Computer/{04EC6E63-6996-4B1F-B4C8-8E77ED582F7D}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2016 System - Computer/{04EC6E63-6996-4B1F-B4C8-8E77ED582F7D}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2016 System - Computer/{04EC6E63-6996-4B1F-B4C8-8E77ED582F7D}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2016 System - Computer/{04EC6E63-6996-4B1F-B4C8-8E77ED582F7D}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2016 System - Computer/{04EC6E63-6996-4B1F-B4C8-8E77ED582F7D}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2016 System - Computer/{04EC6E63-6996-4B1F-B4C8-8E77ED582F7D}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2016 System - Computer/{04EC6E63-6996-4B1F-B4C8-8E77ED582F7D}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2016 System - Computer/{04EC6E63-6996-4B1F-B4C8-8E77ED582F7D}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2016 System - Computer/{04EC6E63-6996-4B1F-B4C8-8E77ED582F7D}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2016 System - Computer/{04EC6E63-6996-4B1F-B4C8-8E77ED582F7D}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2016 System - User/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2016 System - User/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2016 System - User/{FEBA971B-64EE-4402-8CF3-BD8EFB68F987}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2016 System - User/{FEBA971B-64EE-4402-8CF3-BD8EFB68F987}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2016 System - User/{FEBA971B-64EE-4402-8CF3-BD8EFB68F987}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2016 System - User/{FEBA971B-64EE-4402-8CF3-BD8EFB68F987}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2016 System - User/{FEBA971B-64EE-4402-8CF3-BD8EFB68F987}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2016 System - User/{FEBA971B-64EE-4402-8CF3-BD8EFB68F987}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2016 System - User/{FEBA971B-64EE-4402-8CF3-BD8EFB68F987}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2016 System - User/{FEBA971B-64EE-4402-8CF3-BD8EFB68F987}/DomainSysvol/GPO/User/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2016 System - User/{FEBA971B-64EE-4402-8CF3-BD8EFB68F987}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2016 System - User/{FEBA971B-64EE-4402-8CF3-BD8EFB68F987}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2016 System - User/{FEBA971B-64EE-4402-8CF3-BD8EFB68F987}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2016 System - User/{FEBA971B-64EE-4402-8CF3-BD8EFB68F987}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2019 System - Computer/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2019 System - Computer/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2019 System - Computer/{F30C640A-9304-4BAB-9301-98313D78EDA8}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2019 System - Computer/{F30C640A-9304-4BAB-9301-98313D78EDA8}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2019 System - Computer/{F30C640A-9304-4BAB-9301-98313D78EDA8}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2019 System - Computer/{F30C640A-9304-4BAB-9301-98313D78EDA8}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2019 System - Computer/{F30C640A-9304-4BAB-9301-98313D78EDA8}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2019 System - Computer/{F30C640A-9304-4BAB-9301-98313D78EDA8}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2019 System - Computer/{F30C640A-9304-4BAB-9301-98313D78EDA8}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2019 System - Computer/{F30C640A-9304-4BAB-9301-98313D78EDA8}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2019 System - Computer/{F30C640A-9304-4BAB-9301-98313D78EDA8}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2019 System - Computer/{F30C640A-9304-4BAB-9301-98313D78EDA8}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2019 System - Computer/{F30C640A-9304-4BAB-9301-98313D78EDA8}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2019 System - Computer/{F30C640A-9304-4BAB-9301-98313D78EDA8}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2019 System - User/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2019 System - User/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2019 System - User/{AAEEB370-628D-461A-819E-6807F0D543EF}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2019 System - User/{AAEEB370-628D-461A-819E-6807F0D543EF}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2019 System - User/{AAEEB370-628D-461A-819E-6807F0D543EF}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2019 System - User/{AAEEB370-628D-461A-819E-6807F0D543EF}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2019 System - User/{AAEEB370-628D-461A-819E-6807F0D543EF}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2019 System - User/{AAEEB370-628D-461A-819E-6807F0D543EF}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2019 System - User/{AAEEB370-628D-461A-819E-6807F0D543EF}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2019 System - User/{AAEEB370-628D-461A-819E-6807F0D543EF}/DomainSysvol/GPO/User/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2019 System - User/{AAEEB370-628D-461A-819E-6807F0D543EF}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2019 System - User/{AAEEB370-628D-461A-819E-6807F0D543EF}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Office 2019 System - User/{AAEEB370-628D-461A-819E-6807F0D543EF}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Office 2019 System - User/{AAEEB370-628D-461A-819E-6807F0D543EF}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - OneDrive for Business 2016 - Computer/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - OneDrive for Business 2016 - Computer/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - OneDrive for Business 2016 - Computer/{7E6A6C4E-586B-46CC-B706-7CE80D604B4A}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - OneDrive for Business 2016 - Computer/{7E6A6C4E-586B-46CC-B706-7CE80D604B4A}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - OneDrive for Business 2016 - Computer/{7E6A6C4E-586B-46CC-B706-7CE80D604B4A}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - OneDrive for Business 2016 - Computer/{7E6A6C4E-586B-46CC-B706-7CE80D604B4A}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - OneDrive for Business 2016 - Computer/{7E6A6C4E-586B-46CC-B706-7CE80D604B4A}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - OneDrive for Business 2016 - Computer/{7E6A6C4E-586B-46CC-B706-7CE80D604B4A}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - OneDrive for Business 2016 - Computer/{7E6A6C4E-586B-46CC-B706-7CE80D604B4A}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - OneDrive for Business 2016 - Computer/{7E6A6C4E-586B-46CC-B706-7CE80D604B4A}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - OneDrive for Business 2016 - Computer/{7E6A6C4E-586B-46CC-B706-7CE80D604B4A}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - OneDrive for Business 2016 - Computer/{7E6A6C4E-586B-46CC-B706-7CE80D604B4A}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - OneDrive for Business 2016 - Computer/{7E6A6C4E-586B-46CC-B706-7CE80D604B4A}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - OneDrive for Business 2016 - Computer/{7E6A6C4E-586B-46CC-B706-7CE80D604B4A}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - OneDrive for Business 2016 - User/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - OneDrive for Business 2016 - User/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - OneDrive for Business 2016 - User/{F1033BD9-065D-48AC-8B3D-CA763750D38C}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - OneDrive for Business 2016 - User/{F1033BD9-065D-48AC-8B3D-CA763750D38C}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - OneDrive for Business 2016 - User/{F1033BD9-065D-48AC-8B3D-CA763750D38C}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - OneDrive for Business 2016 - User/{F1033BD9-065D-48AC-8B3D-CA763750D38C}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - OneDrive for Business 2016 - User/{F1033BD9-065D-48AC-8B3D-CA763750D38C}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - OneDrive for Business 2016 - User/{F1033BD9-065D-48AC-8B3D-CA763750D38C}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - OneDrive for Business 2016 - User/{F1033BD9-065D-48AC-8B3D-CA763750D38C}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - OneDrive for Business 2016 - User/{F1033BD9-065D-48AC-8B3D-CA763750D38C}/DomainSysvol/GPO/User/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - OneDrive for Business 2016 - User/{F1033BD9-065D-48AC-8B3D-CA763750D38C}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - OneDrive for Business 2016 - User/{F1033BD9-065D-48AC-8B3D-CA763750D38C}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - OneDrive for Business 2016 - User/{F1033BD9-065D-48AC-8B3D-CA763750D38C}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - OneDrive for Business 2016 - User/{F1033BD9-065D-48AC-8B3D-CA763750D38C}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Outlook 2013/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Outlook 2013/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Outlook 2013/{70DCE625-7CF4-424D-8532-7C86D031B734}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Outlook 2013/{70DCE625-7CF4-424D-8532-7C86D031B734}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Outlook 2013/{70DCE625-7CF4-424D-8532-7C86D031B734}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Outlook 2013/{70DCE625-7CF4-424D-8532-7C86D031B734}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Outlook 2013/{70DCE625-7CF4-424D-8532-7C86D031B734}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Outlook 2013/{70DCE625-7CF4-424D-8532-7C86D031B734}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Outlook 2013/{70DCE625-7CF4-424D-8532-7C86D031B734}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Outlook 2013/{70DCE625-7CF4-424D-8532-7C86D031B734}/DomainSysvol/GPO/User/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Outlook 2013/{70DCE625-7CF4-424D-8532-7C86D031B734}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Outlook 2013/{70DCE625-7CF4-424D-8532-7C86D031B734}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Outlook 2013/{70DCE625-7CF4-424D-8532-7C86D031B734}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Outlook 2013/{70DCE625-7CF4-424D-8532-7C86D031B734}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Outlook 2016/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Outlook 2016/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Outlook 2016/{DB21D029-D31B-4B26-8959-78E00AE70D42}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Outlook 2016/{DB21D029-D31B-4B26-8959-78E00AE70D42}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Outlook 2016/{DB21D029-D31B-4B26-8959-78E00AE70D42}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Outlook 2016/{DB21D029-D31B-4B26-8959-78E00AE70D42}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Outlook 2016/{DB21D029-D31B-4B26-8959-78E00AE70D42}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Outlook 2016/{DB21D029-D31B-4B26-8959-78E00AE70D42}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Outlook 2016/{DB21D029-D31B-4B26-8959-78E00AE70D42}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Outlook 2016/{DB21D029-D31B-4B26-8959-78E00AE70D42}/DomainSysvol/GPO/User/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Outlook 2016/{DB21D029-D31B-4B26-8959-78E00AE70D42}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Outlook 2016/{DB21D029-D31B-4B26-8959-78E00AE70D42}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Outlook 2016/{DB21D029-D31B-4B26-8959-78E00AE70D42}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Outlook 2016/{DB21D029-D31B-4B26-8959-78E00AE70D42}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - PowerPoint 2013/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - PowerPoint 2013/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - PowerPoint 2013/{1F0712AD-A34D-4810-BA2F-26B272241B25}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - PowerPoint 2013/{1F0712AD-A34D-4810-BA2F-26B272241B25}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - PowerPoint 2013/{1F0712AD-A34D-4810-BA2F-26B272241B25}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - PowerPoint 2013/{1F0712AD-A34D-4810-BA2F-26B272241B25}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - PowerPoint 2013/{1F0712AD-A34D-4810-BA2F-26B272241B25}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - PowerPoint 2013/{1F0712AD-A34D-4810-BA2F-26B272241B25}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - PowerPoint 2013/{1F0712AD-A34D-4810-BA2F-26B272241B25}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - PowerPoint 2013/{1F0712AD-A34D-4810-BA2F-26B272241B25}/DomainSysvol/GPO/User/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - PowerPoint 2013/{1F0712AD-A34D-4810-BA2F-26B272241B25}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - PowerPoint 2013/{1F0712AD-A34D-4810-BA2F-26B272241B25}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - PowerPoint 2013/{1F0712AD-A34D-4810-BA2F-26B272241B25}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - PowerPoint 2013/{1F0712AD-A34D-4810-BA2F-26B272241B25}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - PowerPoint 2016/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - PowerPoint 2016/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - PowerPoint 2016/{68564B4C-9D3E-43AC-8FDD-C466E0E51A43}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - PowerPoint 2016/{68564B4C-9D3E-43AC-8FDD-C466E0E51A43}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - PowerPoint 2016/{68564B4C-9D3E-43AC-8FDD-C466E0E51A43}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - PowerPoint 2016/{68564B4C-9D3E-43AC-8FDD-C466E0E51A43}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - PowerPoint 2016/{68564B4C-9D3E-43AC-8FDD-C466E0E51A43}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - PowerPoint 2016/{68564B4C-9D3E-43AC-8FDD-C466E0E51A43}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - PowerPoint 2016/{68564B4C-9D3E-43AC-8FDD-C466E0E51A43}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - PowerPoint 2016/{68564B4C-9D3E-43AC-8FDD-C466E0E51A43}/DomainSysvol/GPO/User/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - PowerPoint 2016/{68564B4C-9D3E-43AC-8FDD-C466E0E51A43}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - PowerPoint 2016/{68564B4C-9D3E-43AC-8FDD-C466E0E51A43}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - PowerPoint 2016/{68564B4C-9D3E-43AC-8FDD-C466E0E51A43}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - PowerPoint 2016/{68564B4C-9D3E-43AC-8FDD-C466E0E51A43}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Project 2013/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Project 2013/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Project 2013/{0174EA13-07BA-4D00-B4C7-0ED1C5B01B63}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Project 2013/{0174EA13-07BA-4D00-B4C7-0ED1C5B01B63}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Project 2013/{0174EA13-07BA-4D00-B4C7-0ED1C5B01B63}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Project 2013/{0174EA13-07BA-4D00-B4C7-0ED1C5B01B63}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Project 2013/{0174EA13-07BA-4D00-B4C7-0ED1C5B01B63}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Project 2013/{0174EA13-07BA-4D00-B4C7-0ED1C5B01B63}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Project 2013/{0174EA13-07BA-4D00-B4C7-0ED1C5B01B63}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Project 2013/{0174EA13-07BA-4D00-B4C7-0ED1C5B01B63}/DomainSysvol/GPO/User/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Project 2013/{0174EA13-07BA-4D00-B4C7-0ED1C5B01B63}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Project 2013/{0174EA13-07BA-4D00-B4C7-0ED1C5B01B63}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Project 2013/{0174EA13-07BA-4D00-B4C7-0ED1C5B01B63}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Project 2013/{0174EA13-07BA-4D00-B4C7-0ED1C5B01B63}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Project 2016/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Project 2016/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Project 2016/{115DD7FC-7EAB-481E-B5C6-2389371A9EA6}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Project 2016/{115DD7FC-7EAB-481E-B5C6-2389371A9EA6}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Project 2016/{115DD7FC-7EAB-481E-B5C6-2389371A9EA6}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Project 2016/{115DD7FC-7EAB-481E-B5C6-2389371A9EA6}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Project 2016/{115DD7FC-7EAB-481E-B5C6-2389371A9EA6}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Project 2016/{115DD7FC-7EAB-481E-B5C6-2389371A9EA6}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Project 2016/{115DD7FC-7EAB-481E-B5C6-2389371A9EA6}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Project 2016/{115DD7FC-7EAB-481E-B5C6-2389371A9EA6}/DomainSysvol/GPO/User/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Project 2016/{115DD7FC-7EAB-481E-B5C6-2389371A9EA6}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Project 2016/{115DD7FC-7EAB-481E-B5C6-2389371A9EA6}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Project 2016/{115DD7FC-7EAB-481E-B5C6-2389371A9EA6}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Project 2016/{115DD7FC-7EAB-481E-B5C6-2389371A9EA6}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Publisher 2013/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Publisher 2013/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Publisher 2013/{6431CF18-403D-4DEC-AF23-BCB18292E78A}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Publisher 2013/{6431CF18-403D-4DEC-AF23-BCB18292E78A}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Publisher 2013/{6431CF18-403D-4DEC-AF23-BCB18292E78A}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Publisher 2013/{6431CF18-403D-4DEC-AF23-BCB18292E78A}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Publisher 2013/{6431CF18-403D-4DEC-AF23-BCB18292E78A}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Publisher 2013/{6431CF18-403D-4DEC-AF23-BCB18292E78A}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Publisher 2013/{6431CF18-403D-4DEC-AF23-BCB18292E78A}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Publisher 2013/{6431CF18-403D-4DEC-AF23-BCB18292E78A}/DomainSysvol/GPO/User/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Publisher 2013/{6431CF18-403D-4DEC-AF23-BCB18292E78A}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Publisher 2013/{6431CF18-403D-4DEC-AF23-BCB18292E78A}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Publisher 2013/{6431CF18-403D-4DEC-AF23-BCB18292E78A}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Publisher 2013/{6431CF18-403D-4DEC-AF23-BCB18292E78A}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Publisher 2016/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Publisher 2016/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Publisher 2016/{2CDF1274-91B5-448A-A1E7-1738E2B65B54}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Publisher 2016/{2CDF1274-91B5-448A-A1E7-1738E2B65B54}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Publisher 2016/{2CDF1274-91B5-448A-A1E7-1738E2B65B54}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Publisher 2016/{2CDF1274-91B5-448A-A1E7-1738E2B65B54}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Publisher 2016/{2CDF1274-91B5-448A-A1E7-1738E2B65B54}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Publisher 2016/{2CDF1274-91B5-448A-A1E7-1738E2B65B54}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Publisher 2016/{2CDF1274-91B5-448A-A1E7-1738E2B65B54}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Publisher 2016/{2CDF1274-91B5-448A-A1E7-1738E2B65B54}/DomainSysvol/GPO/User/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Publisher 2016/{2CDF1274-91B5-448A-A1E7-1738E2B65B54}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Publisher 2016/{2CDF1274-91B5-448A-A1E7-1738E2B65B54}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Publisher 2016/{2CDF1274-91B5-448A-A1E7-1738E2B65B54}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Publisher 2016/{2CDF1274-91B5-448A-A1E7-1738E2B65B54}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Skype for Business 2016/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Skype for Business 2016/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Skype for Business 2016/{9FAC973D-4597-4D3F-B55B-14214DE8360C}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Skype for Business 2016/{9FAC973D-4597-4D3F-B55B-14214DE8360C}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Skype for Business 2016/{9FAC973D-4597-4D3F-B55B-14214DE8360C}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Skype for Business 2016/{9FAC973D-4597-4D3F-B55B-14214DE8360C}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Skype for Business 2016/{9FAC973D-4597-4D3F-B55B-14214DE8360C}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Skype for Business 2016/{9FAC973D-4597-4D3F-B55B-14214DE8360C}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Skype for Business 2016/{9FAC973D-4597-4D3F-B55B-14214DE8360C}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Skype for Business 2016/{9FAC973D-4597-4D3F-B55B-14214DE8360C}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Skype for Business 2016/{9FAC973D-4597-4D3F-B55B-14214DE8360C}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Skype for Business 2016/{9FAC973D-4597-4D3F-B55B-14214DE8360C}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Skype for Business 2016/{9FAC973D-4597-4D3F-B55B-14214DE8360C}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Skype for Business 2016/{9FAC973D-4597-4D3F-B55B-14214DE8360C}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Visio 2013/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Visio 2013/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Visio 2013/{3F89AF67-6543-4F46-AA10-8A69C27BC416}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Visio 2013/{3F89AF67-6543-4F46-AA10-8A69C27BC416}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Visio 2013/{3F89AF67-6543-4F46-AA10-8A69C27BC416}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Visio 2013/{3F89AF67-6543-4F46-AA10-8A69C27BC416}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Visio 2013/{3F89AF67-6543-4F46-AA10-8A69C27BC416}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Visio 2013/{3F89AF67-6543-4F46-AA10-8A69C27BC416}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Visio 2013/{3F89AF67-6543-4F46-AA10-8A69C27BC416}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Visio 2013/{3F89AF67-6543-4F46-AA10-8A69C27BC416}/DomainSysvol/GPO/User/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Visio 2013/{3F89AF67-6543-4F46-AA10-8A69C27BC416}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Visio 2013/{3F89AF67-6543-4F46-AA10-8A69C27BC416}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Visio 2013/{3F89AF67-6543-4F46-AA10-8A69C27BC416}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Visio 2013/{3F89AF67-6543-4F46-AA10-8A69C27BC416}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Visio 2016/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Visio 2016/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Visio 2016/{FAD99305-2EF7-4F42-9A41-C810887C2694}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Visio 2016/{FAD99305-2EF7-4F42-9A41-C810887C2694}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Visio 2016/{FAD99305-2EF7-4F42-9A41-C810887C2694}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Visio 2016/{FAD99305-2EF7-4F42-9A41-C810887C2694}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Visio 2016/{FAD99305-2EF7-4F42-9A41-C810887C2694}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Visio 2016/{FAD99305-2EF7-4F42-9A41-C810887C2694}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Visio 2016/{FAD99305-2EF7-4F42-9A41-C810887C2694}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Visio 2016/{FAD99305-2EF7-4F42-9A41-C810887C2694}/DomainSysvol/GPO/User/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Visio 2016/{FAD99305-2EF7-4F42-9A41-C810887C2694}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Visio 2016/{FAD99305-2EF7-4F42-9A41-C810887C2694}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Visio 2016/{FAD99305-2EF7-4F42-9A41-C810887C2694}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Visio 2016/{FAD99305-2EF7-4F42-9A41-C810887C2694}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Word 2013/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Word 2013/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Word 2013/{6A934970-3734-4754-9FDF-AA80962CA6A8}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Word 2013/{6A934970-3734-4754-9FDF-AA80962CA6A8}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Word 2013/{6A934970-3734-4754-9FDF-AA80962CA6A8}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Word 2013/{6A934970-3734-4754-9FDF-AA80962CA6A8}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Word 2013/{6A934970-3734-4754-9FDF-AA80962CA6A8}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Word 2013/{6A934970-3734-4754-9FDF-AA80962CA6A8}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Word 2013/{6A934970-3734-4754-9FDF-AA80962CA6A8}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Word 2013/{6A934970-3734-4754-9FDF-AA80962CA6A8}/DomainSysvol/GPO/User/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Word 2013/{6A934970-3734-4754-9FDF-AA80962CA6A8}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Word 2013/{6A934970-3734-4754-9FDF-AA80962CA6A8}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Office/DoD - Word 2013/{6A934970-3734-4754-9FDF-AA80962CA6A8}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Office/DoD - Word 2013/{6A934970-3734-4754-9FDF-AA80962CA6A8}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - Computer/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - Computer/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - Computer/{F421D38E-AD0D-4F9C-9714-0118F75AFA0A}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - Computer/{F421D38E-AD0D-4F9C-9714-0118F75AFA0A}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - Computer/{F421D38E-AD0D-4F9C-9714-0118F75AFA0A}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - Computer/{F421D38E-AD0D-4F9C-9714-0118F75AFA0A}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - Computer/{F421D38E-AD0D-4F9C-9714-0118F75AFA0A}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - Computer/{F421D38E-AD0D-4F9C-9714-0118F75AFA0A}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - Computer/{F421D38E-AD0D-4F9C-9714-0118F75AFA0A}/DomainSysvol/GPO/Machine/microsoft/windows nt/Audit/audit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - Computer/{F421D38E-AD0D-4F9C-9714-0118F75AFA0A}/DomainSysvol/GPO/Machine/microsoft/windows nt/Audit/audit.csv -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - Computer/{F421D38E-AD0D-4F9C-9714-0118F75AFA0A}/DomainSysvol/GPO/Machine/microsoft/windows nt/SecEdit/GptTmpl.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - Computer/{F421D38E-AD0D-4F9C-9714-0118F75AFA0A}/DomainSysvol/GPO/Machine/microsoft/windows nt/SecEdit/GptTmpl.inf -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - Computer/{F421D38E-AD0D-4F9C-9714-0118F75AFA0A}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - Computer/{F421D38E-AD0D-4F9C-9714-0118F75AFA0A}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - Computer/{F421D38E-AD0D-4F9C-9714-0118F75AFA0A}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - Computer/{F421D38E-AD0D-4F9C-9714-0118F75AFA0A}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - Computer/{F421D38E-AD0D-4F9C-9714-0118F75AFA0A}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- 1 | PReg -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - Computer/{F421D38E-AD0D-4F9C-9714-0118F75AFA0A}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - Computer/{F421D38E-AD0D-4F9C-9714-0118F75AFA0A}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - Computer/{F421D38E-AD0D-4F9C-9714-0118F75AFA0A}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - Computer/{F421D38E-AD0D-4F9C-9714-0118F75AFA0A}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - User/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - User/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - User/{646B92F2-1B42-4788-89B5-1960E48A4297}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - User/{646B92F2-1B42-4788-89B5-1960E48A4297}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - User/{646B92F2-1B42-4788-89B5-1960E48A4297}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - User/{646B92F2-1B42-4788-89B5-1960E48A4297}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - User/{646B92F2-1B42-4788-89B5-1960E48A4297}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - User/{646B92F2-1B42-4788-89B5-1960E48A4297}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - User/{646B92F2-1B42-4788-89B5-1960E48A4297}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - User/{646B92F2-1B42-4788-89B5-1960E48A4297}/DomainSysvol/GPO/User/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - User/{646B92F2-1B42-4788-89B5-1960E48A4297}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - User/{646B92F2-1B42-4788-89B5-1960E48A4297}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - User/{646B92F2-1B42-4788-89B5-1960E48A4297}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 DC - User/{646B92F2-1B42-4788-89B5-1960E48A4297}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - Computer/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - Computer/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - Computer/{EF232375-712B-4587-8F15-9F8DC208981D}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - Computer/{EF232375-712B-4587-8F15-9F8DC208981D}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - Computer/{EF232375-712B-4587-8F15-9F8DC208981D}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - Computer/{EF232375-712B-4587-8F15-9F8DC208981D}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - Computer/{EF232375-712B-4587-8F15-9F8DC208981D}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - Computer/{EF232375-712B-4587-8F15-9F8DC208981D}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - Computer/{EF232375-712B-4587-8F15-9F8DC208981D}/DomainSysvol/GPO/Machine/microsoft/windows nt/Audit/audit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - Computer/{EF232375-712B-4587-8F15-9F8DC208981D}/DomainSysvol/GPO/Machine/microsoft/windows nt/Audit/audit.csv -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - Computer/{EF232375-712B-4587-8F15-9F8DC208981D}/DomainSysvol/GPO/Machine/microsoft/windows nt/SecEdit/GptTmpl.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - Computer/{EF232375-712B-4587-8F15-9F8DC208981D}/DomainSysvol/GPO/Machine/microsoft/windows nt/SecEdit/GptTmpl.inf -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - Computer/{EF232375-712B-4587-8F15-9F8DC208981D}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - Computer/{EF232375-712B-4587-8F15-9F8DC208981D}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - Computer/{EF232375-712B-4587-8F15-9F8DC208981D}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - Computer/{EF232375-712B-4587-8F15-9F8DC208981D}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - Computer/{EF232375-712B-4587-8F15-9F8DC208981D}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - Computer/{EF232375-712B-4587-8F15-9F8DC208981D}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - User/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - User/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - User/{FE7C5CC8-7170-4453-81B1-3778BE03B266}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - User/{FE7C5CC8-7170-4453-81B1-3778BE03B266}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - User/{FE7C5CC8-7170-4453-81B1-3778BE03B266}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - User/{FE7C5CC8-7170-4453-81B1-3778BE03B266}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - User/{FE7C5CC8-7170-4453-81B1-3778BE03B266}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - User/{FE7C5CC8-7170-4453-81B1-3778BE03B266}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - User/{FE7C5CC8-7170-4453-81B1-3778BE03B266}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - User/{FE7C5CC8-7170-4453-81B1-3778BE03B266}/DomainSysvol/GPO/User/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - User/{FE7C5CC8-7170-4453-81B1-3778BE03B266}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - User/{FE7C5CC8-7170-4453-81B1-3778BE03B266}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - User/{FE7C5CC8-7170-4453-81B1-3778BE03B266}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2012 R2 MS - User/{FE7C5CC8-7170-4453-81B1-3778BE03B266}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - Computer/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - Computer/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - Computer/{D957C59A-75FE-44F3-8586-608B4DD74187}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - Computer/{D957C59A-75FE-44F3-8586-608B4DD74187}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - Computer/{D957C59A-75FE-44F3-8586-608B4DD74187}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - Computer/{D957C59A-75FE-44F3-8586-608B4DD74187}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - Computer/{D957C59A-75FE-44F3-8586-608B4DD74187}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - Computer/{D957C59A-75FE-44F3-8586-608B4DD74187}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - Computer/{D957C59A-75FE-44F3-8586-608B4DD74187}/DomainSysvol/GPO/Machine/microsoft/windows nt/Audit/audit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - Computer/{D957C59A-75FE-44F3-8586-608B4DD74187}/DomainSysvol/GPO/Machine/microsoft/windows nt/Audit/audit.csv -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - Computer/{D957C59A-75FE-44F3-8586-608B4DD74187}/DomainSysvol/GPO/Machine/microsoft/windows nt/SecEdit/GptTmpl.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - Computer/{D957C59A-75FE-44F3-8586-608B4DD74187}/DomainSysvol/GPO/Machine/microsoft/windows nt/SecEdit/GptTmpl.inf -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - Computer/{D957C59A-75FE-44F3-8586-608B4DD74187}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - Computer/{D957C59A-75FE-44F3-8586-608B4DD74187}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - Computer/{D957C59A-75FE-44F3-8586-608B4DD74187}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - Computer/{D957C59A-75FE-44F3-8586-608B4DD74187}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - Computer/{D957C59A-75FE-44F3-8586-608B4DD74187}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - Computer/{D957C59A-75FE-44F3-8586-608B4DD74187}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - User/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - User/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - User/{2A2AB595-D695-4DBA-AB76-A1EEC92BAF8B}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - User/{2A2AB595-D695-4DBA-AB76-A1EEC92BAF8B}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - User/{2A2AB595-D695-4DBA-AB76-A1EEC92BAF8B}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - User/{2A2AB595-D695-4DBA-AB76-A1EEC92BAF8B}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - User/{2A2AB595-D695-4DBA-AB76-A1EEC92BAF8B}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - User/{2A2AB595-D695-4DBA-AB76-A1EEC92BAF8B}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - User/{2A2AB595-D695-4DBA-AB76-A1EEC92BAF8B}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - User/{2A2AB595-D695-4DBA-AB76-A1EEC92BAF8B}/DomainSysvol/GPO/User/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - User/{2A2AB595-D695-4DBA-AB76-A1EEC92BAF8B}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - User/{2A2AB595-D695-4DBA-AB76-A1EEC92BAF8B}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - User/{2A2AB595-D695-4DBA-AB76-A1EEC92BAF8B}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 DC - User/{2A2AB595-D695-4DBA-AB76-A1EEC92BAF8B}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - Computer/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - Computer/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - Computer/{1FD3A240-8662-4689-B586-DDAD6AD3C46A}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - Computer/{1FD3A240-8662-4689-B586-DDAD6AD3C46A}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - Computer/{1FD3A240-8662-4689-B586-DDAD6AD3C46A}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - Computer/{1FD3A240-8662-4689-B586-DDAD6AD3C46A}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - Computer/{1FD3A240-8662-4689-B586-DDAD6AD3C46A}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - Computer/{1FD3A240-8662-4689-B586-DDAD6AD3C46A}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - Computer/{1FD3A240-8662-4689-B586-DDAD6AD3C46A}/DomainSysvol/GPO/Machine/microsoft/windows nt/Audit/audit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - Computer/{1FD3A240-8662-4689-B586-DDAD6AD3C46A}/DomainSysvol/GPO/Machine/microsoft/windows nt/Audit/audit.csv -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - Computer/{1FD3A240-8662-4689-B586-DDAD6AD3C46A}/DomainSysvol/GPO/Machine/microsoft/windows nt/SecEdit/GptTmpl.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - Computer/{1FD3A240-8662-4689-B586-DDAD6AD3C46A}/DomainSysvol/GPO/Machine/microsoft/windows nt/SecEdit/GptTmpl.inf -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - Computer/{1FD3A240-8662-4689-B586-DDAD6AD3C46A}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - Computer/{1FD3A240-8662-4689-B586-DDAD6AD3C46A}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - Computer/{1FD3A240-8662-4689-B586-DDAD6AD3C46A}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - Computer/{1FD3A240-8662-4689-B586-DDAD6AD3C46A}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - Computer/{1FD3A240-8662-4689-B586-DDAD6AD3C46A}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - Computer/{1FD3A240-8662-4689-B586-DDAD6AD3C46A}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - User/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - User/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - User/{FB37B9E4-10C3-44CF-82FB-56F3D1C85635}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - User/{FB37B9E4-10C3-44CF-82FB-56F3D1C85635}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - User/{FB37B9E4-10C3-44CF-82FB-56F3D1C85635}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - User/{FB37B9E4-10C3-44CF-82FB-56F3D1C85635}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - User/{FB37B9E4-10C3-44CF-82FB-56F3D1C85635}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - User/{FB37B9E4-10C3-44CF-82FB-56F3D1C85635}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - User/{FB37B9E4-10C3-44CF-82FB-56F3D1C85635}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - User/{FB37B9E4-10C3-44CF-82FB-56F3D1C85635}/DomainSysvol/GPO/User/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - User/{FB37B9E4-10C3-44CF-82FB-56F3D1C85635}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - User/{FB37B9E4-10C3-44CF-82FB-56F3D1C85635}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - User/{FB37B9E4-10C3-44CF-82FB-56F3D1C85635}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2016 MS - User/{FB37B9E4-10C3-44CF-82FB-56F3D1C85635}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - Computer/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - Computer/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - Computer/{B8BA60A1-5C5D-43A8-B66E-8C78092B4BFE}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - Computer/{B8BA60A1-5C5D-43A8-B66E-8C78092B4BFE}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - Computer/{B8BA60A1-5C5D-43A8-B66E-8C78092B4BFE}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - Computer/{B8BA60A1-5C5D-43A8-B66E-8C78092B4BFE}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - Computer/{B8BA60A1-5C5D-43A8-B66E-8C78092B4BFE}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - Computer/{B8BA60A1-5C5D-43A8-B66E-8C78092B4BFE}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - Computer/{B8BA60A1-5C5D-43A8-B66E-8C78092B4BFE}/DomainSysvol/GPO/Machine/microsoft/windows nt/Audit/audit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - Computer/{B8BA60A1-5C5D-43A8-B66E-8C78092B4BFE}/DomainSysvol/GPO/Machine/microsoft/windows nt/Audit/audit.csv -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - Computer/{B8BA60A1-5C5D-43A8-B66E-8C78092B4BFE}/DomainSysvol/GPO/Machine/microsoft/windows nt/SecEdit/GptTmpl.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - Computer/{B8BA60A1-5C5D-43A8-B66E-8C78092B4BFE}/DomainSysvol/GPO/Machine/microsoft/windows nt/SecEdit/GptTmpl.inf -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - Computer/{B8BA60A1-5C5D-43A8-B66E-8C78092B4BFE}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - Computer/{B8BA60A1-5C5D-43A8-B66E-8C78092B4BFE}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - Computer/{B8BA60A1-5C5D-43A8-B66E-8C78092B4BFE}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - Computer/{B8BA60A1-5C5D-43A8-B66E-8C78092B4BFE}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - Computer/{B8BA60A1-5C5D-43A8-B66E-8C78092B4BFE}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - Computer/{B8BA60A1-5C5D-43A8-B66E-8C78092B4BFE}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - User/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - User/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - User/{3B82ECB5-D399-4D1B-89E3-E65ABE88A2C4}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - User/{3B82ECB5-D399-4D1B-89E3-E65ABE88A2C4}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - User/{3B82ECB5-D399-4D1B-89E3-E65ABE88A2C4}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - User/{3B82ECB5-D399-4D1B-89E3-E65ABE88A2C4}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - User/{3B82ECB5-D399-4D1B-89E3-E65ABE88A2C4}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - User/{3B82ECB5-D399-4D1B-89E3-E65ABE88A2C4}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - User/{3B82ECB5-D399-4D1B-89E3-E65ABE88A2C4}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - User/{3B82ECB5-D399-4D1B-89E3-E65ABE88A2C4}/DomainSysvol/GPO/User/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - User/{3B82ECB5-D399-4D1B-89E3-E65ABE88A2C4}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - User/{3B82ECB5-D399-4D1B-89E3-E65ABE88A2C4}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - User/{3B82ECB5-D399-4D1B-89E3-E65ABE88A2C4}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 DC - User/{3B82ECB5-D399-4D1B-89E3-E65ABE88A2C4}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - Computer/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - Computer/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - Computer/{98D0B744-8E34-41D1-AD1B-824A6750F078}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - Computer/{98D0B744-8E34-41D1-AD1B-824A6750F078}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - Computer/{98D0B744-8E34-41D1-AD1B-824A6750F078}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - Computer/{98D0B744-8E34-41D1-AD1B-824A6750F078}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - Computer/{98D0B744-8E34-41D1-AD1B-824A6750F078}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - Computer/{98D0B744-8E34-41D1-AD1B-824A6750F078}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - Computer/{98D0B744-8E34-41D1-AD1B-824A6750F078}/DomainSysvol/GPO/Machine/microsoft/windows nt/Audit/audit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - Computer/{98D0B744-8E34-41D1-AD1B-824A6750F078}/DomainSysvol/GPO/Machine/microsoft/windows nt/Audit/audit.csv -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - Computer/{98D0B744-8E34-41D1-AD1B-824A6750F078}/DomainSysvol/GPO/Machine/microsoft/windows nt/SecEdit/GptTmpl.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - Computer/{98D0B744-8E34-41D1-AD1B-824A6750F078}/DomainSysvol/GPO/Machine/microsoft/windows nt/SecEdit/GptTmpl.inf -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - Computer/{98D0B744-8E34-41D1-AD1B-824A6750F078}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - Computer/{98D0B744-8E34-41D1-AD1B-824A6750F078}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - Computer/{98D0B744-8E34-41D1-AD1B-824A6750F078}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - Computer/{98D0B744-8E34-41D1-AD1B-824A6750F078}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - Computer/{98D0B744-8E34-41D1-AD1B-824A6750F078}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - Computer/{98D0B744-8E34-41D1-AD1B-824A6750F078}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - User/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - User/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - User/{F303E735-3DD5-45F5-821B-F159BD2C14AB}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - User/{F303E735-3DD5-45F5-821B-F159BD2C14AB}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - User/{F303E735-3DD5-45F5-821B-F159BD2C14AB}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - User/{F303E735-3DD5-45F5-821B-F159BD2C14AB}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - User/{F303E735-3DD5-45F5-821B-F159BD2C14AB}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - User/{F303E735-3DD5-45F5-821B-F159BD2C14AB}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - User/{F303E735-3DD5-45F5-821B-F159BD2C14AB}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - User/{F303E735-3DD5-45F5-821B-F159BD2C14AB}/DomainSysvol/GPO/User/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - User/{F303E735-3DD5-45F5-821B-F159BD2C14AB}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - User/{F303E735-3DD5-45F5-821B-F159BD2C14AB}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - User/{F303E735-3DD5-45F5-821B-F159BD2C14AB}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/DoD/Windows/DoD - Windows Server 2019 MS - User/{F303E735-3DD5-45F5-821B-F159BD2C14AB}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/NSACyber/Applocker/NSACyber - Applocker (Audit)/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/NSACyber/Applocker/NSACyber - Applocker (Audit)/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/NSACyber/Applocker/NSACyber - Applocker (Audit)/{492BD621-FD45-4996-BB17-3C9284759736}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/NSACyber/Applocker/NSACyber - Applocker (Audit)/{492BD621-FD45-4996-BB17-3C9284759736}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/NSACyber/Applocker/NSACyber - Applocker (Audit)/{492BD621-FD45-4996-BB17-3C9284759736}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/NSACyber/Applocker/NSACyber - Applocker (Audit)/{492BD621-FD45-4996-BB17-3C9284759736}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/NSACyber/Applocker/NSACyber - Applocker (Audit)/{492BD621-FD45-4996-BB17-3C9284759736}/DomainSysvol/GPO/Machine/microsoft/windows nt/SecEdit/GptTmpl.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/NSACyber/Applocker/NSACyber - Applocker (Audit)/{492BD621-FD45-4996-BB17-3C9284759736}/DomainSysvol/GPO/Machine/microsoft/windows nt/SecEdit/GptTmpl.inf -------------------------------------------------------------------------------- /Files/GPOs/NSACyber/Applocker/NSACyber - Applocker (Audit)/{492BD621-FD45-4996-BB17-3C9284759736}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/NSACyber/Applocker/NSACyber - Applocker (Audit)/{492BD621-FD45-4996-BB17-3C9284759736}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/NSACyber/Applocker/NSACyber - Applocker (Audit)/{492BD621-FD45-4996-BB17-3C9284759736}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/NSACyber/Applocker/NSACyber - Applocker (Audit)/{492BD621-FD45-4996-BB17-3C9284759736}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/NSACyber/Applocker/NSACyber - Applocker (Audit)/{492BD621-FD45-4996-BB17-3C9284759736}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/NSACyber/Applocker/NSACyber - Applocker (Audit)/{492BD621-FD45-4996-BB17-3C9284759736}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/NSACyber/Bitlocker/NSACyber - BitLocker/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/NSACyber/Bitlocker/NSACyber - BitLocker/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/NSACyber/Bitlocker/NSACyber - BitLocker/{6C3C0177-281F-4547-89D7-66347525E1C2}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/NSACyber/Bitlocker/NSACyber - BitLocker/{6C3C0177-281F-4547-89D7-66347525E1C2}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/NSACyber/Bitlocker/NSACyber - BitLocker/{6C3C0177-281F-4547-89D7-66347525E1C2}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/NSACyber/Bitlocker/NSACyber - BitLocker/{6C3C0177-281F-4547-89D7-66347525E1C2}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/NSACyber/Bitlocker/NSACyber - BitLocker/{6C3C0177-281F-4547-89D7-66347525E1C2}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/NSACyber/Bitlocker/NSACyber - BitLocker/{6C3C0177-281F-4547-89D7-66347525E1C2}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/NSACyber/Bitlocker/NSACyber - BitLocker/{6C3C0177-281F-4547-89D7-66347525E1C2}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/NSACyber/Bitlocker/NSACyber - BitLocker/{6C3C0177-281F-4547-89D7-66347525E1C2}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/NSACyber/Bitlocker/NSACyber - BitLocker/{6C3C0177-281F-4547-89D7-66347525E1C2}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/NSACyber/Bitlocker/NSACyber - BitLocker/{6C3C0177-281F-4547-89D7-66347525E1C2}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/NSACyber/Bitlocker/NSACyber - BitLocker/{6C3C0177-281F-4547-89D7-66347525E1C2}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/NSACyber/Bitlocker/NSACyber - BitLocker/{6C3C0177-281F-4547-89D7-66347525E1C2}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/SoS/FireFox/SOS - FireFox STIG/{BF932DFE-99E7-4DDC-9CB7-5DEA3AEE4074}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/SoS/FireFox/SOS - FireFox STIG/{BF932DFE-99E7-4DDC-9CB7-5DEA3AEE4074}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/SoS/FireFox/SOS - FireFox STIG/{BF932DFE-99E7-4DDC-9CB7-5DEA3AEE4074}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/SoS/FireFox/SOS - FireFox STIG/{BF932DFE-99E7-4DDC-9CB7-5DEA3AEE4074}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/SoS/FireFox/SOS - FireFox STIG/{BF932DFE-99E7-4DDC-9CB7-5DEA3AEE4074}/DomainSysvol/GPO/Machine/Microsoft/Windows NT/SecEdit/GptTmpl.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/SoS/FireFox/SOS - FireFox STIG/{BF932DFE-99E7-4DDC-9CB7-5DEA3AEE4074}/DomainSysvol/GPO/Machine/Microsoft/Windows NT/SecEdit/GptTmpl.inf -------------------------------------------------------------------------------- /Files/GPOs/SoS/FireFox/SOS - FireFox STIG/{BF932DFE-99E7-4DDC-9CB7-5DEA3AEE4074}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/SoS/FireFox/SOS - FireFox STIG/{BF932DFE-99E7-4DDC-9CB7-5DEA3AEE4074}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/SoS/FireFox/SOS - FireFox STIG/{BF932DFE-99E7-4DDC-9CB7-5DEA3AEE4074}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/SoS/FireFox/SOS - FireFox STIG/{BF932DFE-99E7-4DDC-9CB7-5DEA3AEE4074}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/SoS/FireFox/SOS - FireFox STIG/{BF932DFE-99E7-4DDC-9CB7-5DEA3AEE4074}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/SoS/FireFox/SOS - FireFox STIG/{BF932DFE-99E7-4DDC-9CB7-5DEA3AEE4074}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/SoS/FireFox/SOS - FireFox STIG/{BF932DFE-99E7-4DDC-9CB7-5DEA3AEE4074}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/SoS/FireFox/SOS - FireFox STIG/{BF932DFE-99E7-4DDC-9CB7-5DEA3AEE4074}/gpreport.xml -------------------------------------------------------------------------------- /Files/GPOs/SoS/Onedrive/SOS - OneDrive/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/SoS/Onedrive/SOS - OneDrive/manifest.xml -------------------------------------------------------------------------------- /Files/GPOs/SoS/Onedrive/SOS - OneDrive/{E789BABB-ED85-4F31-8014-138B799CA521}/Backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/SoS/Onedrive/SOS - OneDrive/{E789BABB-ED85-4F31-8014-138B799CA521}/Backup.xml -------------------------------------------------------------------------------- /Files/GPOs/SoS/Onedrive/SOS - OneDrive/{E789BABB-ED85-4F31-8014-138B799CA521}/DomainSysvol/GPO/GPO.cmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/SoS/Onedrive/SOS - OneDrive/{E789BABB-ED85-4F31-8014-138B799CA521}/DomainSysvol/GPO/GPO.cmt -------------------------------------------------------------------------------- /Files/GPOs/SoS/Onedrive/SOS - OneDrive/{E789BABB-ED85-4F31-8014-138B799CA521}/DomainSysvol/GPO/Machine/Microsoft/Windows NT/SecEdit/GptTmpl.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/SoS/Onedrive/SOS - OneDrive/{E789BABB-ED85-4F31-8014-138B799CA521}/DomainSysvol/GPO/Machine/Microsoft/Windows NT/SecEdit/GptTmpl.inf -------------------------------------------------------------------------------- /Files/GPOs/SoS/Onedrive/SOS - OneDrive/{E789BABB-ED85-4F31-8014-138B799CA521}/DomainSysvol/GPO/Machine/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/SoS/Onedrive/SOS - OneDrive/{E789BABB-ED85-4F31-8014-138B799CA521}/DomainSysvol/GPO/Machine/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/SoS/Onedrive/SOS - OneDrive/{E789BABB-ED85-4F31-8014-138B799CA521}/DomainSysvol/GPO/Machine/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/SoS/Onedrive/SOS - OneDrive/{E789BABB-ED85-4F31-8014-138B799CA521}/DomainSysvol/GPO/Machine/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/SoS/Onedrive/SOS - OneDrive/{E789BABB-ED85-4F31-8014-138B799CA521}/DomainSysvol/GPO/User/comment.cmtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/SoS/Onedrive/SOS - OneDrive/{E789BABB-ED85-4F31-8014-138B799CA521}/DomainSysvol/GPO/User/comment.cmtx -------------------------------------------------------------------------------- /Files/GPOs/SoS/Onedrive/SOS - OneDrive/{E789BABB-ED85-4F31-8014-138B799CA521}/DomainSysvol/GPO/User/registry.pol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/SoS/Onedrive/SOS - OneDrive/{E789BABB-ED85-4F31-8014-138B799CA521}/DomainSysvol/GPO/User/registry.pol -------------------------------------------------------------------------------- /Files/GPOs/SoS/Onedrive/SOS - OneDrive/{E789BABB-ED85-4F31-8014-138B799CA521}/bkupInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/SoS/Onedrive/SOS - OneDrive/{E789BABB-ED85-4F31-8014-138B799CA521}/bkupInfo.xml -------------------------------------------------------------------------------- /Files/GPOs/SoS/Onedrive/SOS - OneDrive/{E789BABB-ED85-4F31-8014-138B799CA521}/gpreport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/GPOs/SoS/Onedrive/SOS - OneDrive/{E789BABB-ED85-4F31-8014-138B799CA521}/gpreport.xml -------------------------------------------------------------------------------- /Files/JAVA Configuration Files/deployment.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/JAVA Configuration Files/deployment.config -------------------------------------------------------------------------------- /Files/JAVA Configuration Files/deployment.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/JAVA Configuration Files/deployment.properties -------------------------------------------------------------------------------- /Files/JAVA Configuration Files/exception.sites: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/JAVA Configuration Files/exception.sites -------------------------------------------------------------------------------- /Files/LGPO/LGPO.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/LGPO/LGPO.exe -------------------------------------------------------------------------------- /Files/LGPO/LGPO.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/LGPO/LGPO.pdf -------------------------------------------------------------------------------- /Files/Windows Defender Configuration Files/DOD_EP_V3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/Windows Defender Configuration Files/DOD_EP_V3.xml -------------------------------------------------------------------------------- /Files/Windows Defender Configuration Files/WDAC_V1_Audit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/Windows Defender Configuration Files/WDAC_V1_Audit.xml -------------------------------------------------------------------------------- /Files/Windows Defender Configuration Files/WDAC_V1_Default_Audit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/Windows Defender Configuration Files/WDAC_V1_Default_Audit.xml -------------------------------------------------------------------------------- /Files/Windows Defender Configuration Files/WDAC_V1_Default_Enforced.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/Windows Defender Configuration Files/WDAC_V1_Default_Enforced.xml -------------------------------------------------------------------------------- /Files/Windows Defender Configuration Files/WDAC_V1_Enforced.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/Windows Defender Configuration Files/WDAC_V1_Enforced.xml -------------------------------------------------------------------------------- /Files/Windows Defender Configuration Files/WDAC_V1_Recommended_Audit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/Windows Defender Configuration Files/WDAC_V1_Recommended_Audit.xml -------------------------------------------------------------------------------- /Files/Windows Defender Configuration Files/WDAC_V1_Recommended_Enforced.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/Files/Windows Defender Configuration Files/WDAC_V1_Recommended_Enforced.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/README.md -------------------------------------------------------------------------------- /sos-secure-standalone-server.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simeononsecurity/Standalone-Windows-Server-STIG-Script/HEAD/sos-secure-standalone-server.ps1 --------------------------------------------------------------------------------