├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── m365 ├── blank ├── entraid-protector │ ├── README.md │ ├── entraid-protector-webmenu.ps1 │ └── entraid-protector.ps1 ├── get-teams-stats │ ├── README.md │ └── get-teams-stats.ps1 └── unattended-script-example │ ├── 1_m365-register-new-app.ps1 │ ├── 2_m365-app-role-assignment.ps1 │ ├── 3_m365-grant-app-consent.ps1 │ └── 4_m365-upload-cert.ps1 ├── playground ├── README.md ├── old │ ├── correlator.ps1 │ ├── suspiciousXMLcounter.ps1 │ ├── vbr-get-all-restorepoints.ps1 │ └── vbr-get-security-events.ps1 ├── vbr-get-backupcopyjob-details.ps1 ├── vbr-get-jobdetails.ps1 ├── vbr-get-jobrepodetails.ps1 ├── vbr-security-event-flow.ps1 ├── vbr-vm-restore-multinic.ps1 └── vem-flr.ps1 ├── recipe.md ├── vbazure ├── vbazure-suspicious-backupsize │ └── vbazure-suspicious-backupsize.ps1 └── vbazure-workertag │ ├── README.md │ └── vbazure-workertag.ps1 ├── vbo ├── vb365-bkp-job-filter │ └── vb365-bkp-job-filter.ps1 ├── vb365-create-entra-app │ ├── README.md │ ├── vb365-create-entra-app.ps1 │ └── vb365-update-entra-app.ps1 ├── vb365-exo-recovery │ ├── README.md │ └── vb365-exo-recovery.ps1 ├── vb365-exo-scan │ ├── vb365-exo-single-scan.ps1 │ └── vb365-multi-scan.ps1 ├── vb365-exo-usage-report │ ├── README.md │ ├── vb365-exo-usage-report-basicauth.ps1 │ └── vb365-exo-usage-report.ps1 ├── vb365-exrestore-checker │ ├── README.md │ └── vb365-exrestore-checker.ps1 ├── vb365-odb-scanner │ ├── README.md │ └── vb365-odb-single-scan.ps1 ├── vb365-odrestore-checker │ ├── README.md │ └── vb365-odrestore-checker.ps1 ├── vb365-repo-userlist │ ├── README.md │ └── vb365-repo-userlist.ps1 ├── vbo-auditcfg │ ├── README.md │ └── vbo-auditcfg.ps1 ├── vbo-health-checker │ ├── README.md │ └── vbo-health-checker.ps1 └── z_old │ ├── README.md │ ├── vbo-object-tenant-create │ └── vbo-object-tenant-create.ps1 │ └── vbo-teams-adder │ ├── README.md │ └── vbo-teams-adder.ps1 ├── vbr ├── backup-scanning-tools │ ├── README.md │ ├── backup-scanning-tools-installer.ps1 │ ├── backup-scanning-tools-menu.ps1 │ ├── backup-scanning-tools-webmenu.ps1 │ ├── pictures │ │ ├── backup-scanning-tools-webconsole.png │ │ └── menu-selection.png │ └── scanner.png ├── demo-malware-detection-api │ └── demo-malware-detection-api.ps1 ├── misc │ └── file-integrity-monitor │ │ └── file-integrity-monitor.ps1 ├── monitoring_light │ ├── README.md │ ├── job-stats.ps1 │ ├── monitoring_light.ps1 │ ├── rts-extractor-manual-v11.ps1 │ ├── rts-extractor-manual-v12.ps1 │ └── rts-extractor.ps1 ├── syslog │ ├── elk-with-veeam-one │ │ ├── README.md │ │ ├── dashboards │ │ │ └── vdp-kibana-export.ndjson │ │ └── pictures │ │ │ └── elk-security-dashboard-vone.png │ ├── elk │ │ ├── README.md │ │ ├── dashboards │ │ │ └── vbr-kibana-export.ndjson │ │ └── detection-rules │ │ │ └── vbr-detection-rules-export.ndjson │ ├── event-filter │ │ ├── README.md │ │ ├── event-id-list-dec24.csv │ │ └── vbr-generate-syslog-event-filter.ps1 │ └── graylog │ │ ├── README.md │ │ └── veeam-data-platform-content-pack.json ├── vbr-cleanrestore │ ├── README.md │ └── vbr-cleanrestore.ps1 ├── vbr-detection-engine-includer │ └── vbr-detection-engine-includer.ps1 ├── vbr-dr │ ├── README.md │ └── vbr-dr.ps1 ├── vbr-dynamic-surebackup │ ├── README.md │ └── vbr-dynamic-surebackup.ps1 ├── vbr-eventid-comparer │ ├── README.md │ └── vbr-eventid-comparer.ps1 ├── vbr-flr-comparator │ ├── README.md │ └── vbr-flr-comparator.ps1 ├── vbr-flr-hashscanner │ ├── README.md │ ├── vbr-flr-auto-hashscanner.ps1 │ └── vbr-flr-hashscanner.ps1 ├── vbr-get-adchanges │ ├── README.md │ └── vbr-get-adchanges.ps1 ├── vbr-get-job-encryption-info │ ├── README.md │ └── vbr-get-job-encryption-info.ps1 ├── vbr-get-jobcfg │ ├── README.md │ └── vbr-get-jobcfg.ps1 ├── vbr-get-malwareevents │ ├── README.md │ └── vbr-get-malwareevents.ps1 ├── vbr-get-objectstorageusage │ ├── README.md │ └── vbr-get-objectstorageusage.ps1 ├── vbr-get-offloadstats │ ├── README.md │ └── vbr-get-offloadstats.ps1 ├── vbr-get-sqllogshippingstatus │ └── vbr-get-sqllogshippingstatus.ps1 ├── vbr-get-tapeinfo │ ├── README.md │ ├── pictures │ │ └── output.png │ └── vbr-get-tapeinfo.ps1 ├── vbr-guest-index-data-scan-manager │ ├── README.md │ └── vbr-guest-index-data-scan-manager.ps1 ├── vbr-inline-scan-log-analysis │ ├── README.md │ ├── vbr-inline-scan-event-log-analysis │ └── vbr-inline-scan-log-analysis.ps1 ├── vbr-instantdiskrecovery │ ├── README.md │ └── vbr-instantdiskrecovery.ps1 ├── vbr-job-scanner │ ├── README.md │ ├── pictures │ │ ├── advanced-settings-script.png │ │ ├── job-bad.png │ │ └── job-good.png │ ├── vbr-job-scanner-post-script.ps1 │ └── vbr-job-scanner.ps1 ├── vbr-nas-avscanner │ ├── README.md │ └── vbr-nas-avscanner.ps1 ├── vbr-nas-hashcompare │ ├── README.md │ └── vbr-nas-hashcompare.ps1 ├── vbr-nasjob-scanner │ ├── README.md │ ├── pictures │ │ ├── advanced-settings-nasjob-script.png │ │ ├── nasjob-bad.png │ │ ├── placeholder │ │ └── tested-job-source.png │ ├── vbr-nasjob-scanner-post-script.ps1 │ └── vbr-nasjob-scanner.ps1 ├── vbr-port-lister │ ├── README.md │ ├── ServicesFIleHistory.md │ ├── agents.txt │ ├── explorers.txt │ ├── services.txt │ └── vbr-port-lister.ps1 ├── vbr-restore-vm-files │ ├── README.md │ └── vbr-restore-vm-files.ps1 ├── vbr-scan-backups │ ├── README.md │ └── vbr-scan-backups.ps1 ├── vbr-scan-malware-detection-logs │ ├── README.md │ └── vbr-scan-malware-detection-logs.ps1 ├── vbr-securerestore-lnx │ ├── README-iSCSI.md │ ├── README.md │ ├── v12.1 │ │ ├── README.md │ │ └── vbr-securerestore.ps1 │ ├── vbr-securerestore-iscsi.ps1 │ ├── vbr-securerestore-lnx.ps1 │ └── vbr-securerestore.ps1 ├── vbr-staged-restore │ ├── README.md │ ├── WinAVDeepScan.ps1 │ └── vbr-staged-restore.ps1 ├── vbr-surebackup-scripts │ ├── WinSetHTTPProxy │ │ └── README.md │ └── lnx-set-http-proxy │ │ ├── LnxSetHTTPProxy.ps1 │ │ └── README.md └── vbr-tape-verification │ ├── README.md │ └── vbr-tape-verification.ps1 ├── vone ├── README.md ├── vone-get-alerts │ ├── README.md │ └── vone-get-alerts.ps1 └── vone-remediate-surebackup │ ├── README.md │ └── vone-remediate-surebackup.ps1 ├── vro ├── empty └── vro-get-planstatus │ ├── README.md │ └── vro-get-planstatus.ps1 └── vspc ├── blank └── vspc-get-reseller-usage ├── README.md └── vspc-get-reseller-usage.ps1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/README.md -------------------------------------------------------------------------------- /m365/blank: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /m365/entraid-protector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/m365/entraid-protector/README.md -------------------------------------------------------------------------------- /m365/entraid-protector/entraid-protector-webmenu.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/m365/entraid-protector/entraid-protector-webmenu.ps1 -------------------------------------------------------------------------------- /m365/entraid-protector/entraid-protector.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/m365/entraid-protector/entraid-protector.ps1 -------------------------------------------------------------------------------- /m365/get-teams-stats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/m365/get-teams-stats/README.md -------------------------------------------------------------------------------- /m365/get-teams-stats/get-teams-stats.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/m365/get-teams-stats/get-teams-stats.ps1 -------------------------------------------------------------------------------- /m365/unattended-script-example/1_m365-register-new-app.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/m365/unattended-script-example/1_m365-register-new-app.ps1 -------------------------------------------------------------------------------- /m365/unattended-script-example/2_m365-app-role-assignment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/m365/unattended-script-example/2_m365-app-role-assignment.ps1 -------------------------------------------------------------------------------- /m365/unattended-script-example/3_m365-grant-app-consent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/m365/unattended-script-example/3_m365-grant-app-consent.ps1 -------------------------------------------------------------------------------- /m365/unattended-script-example/4_m365-upload-cert.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/m365/unattended-script-example/4_m365-upload-cert.ps1 -------------------------------------------------------------------------------- /playground/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/playground/README.md -------------------------------------------------------------------------------- /playground/old/correlator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/playground/old/correlator.ps1 -------------------------------------------------------------------------------- /playground/old/suspiciousXMLcounter.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/playground/old/suspiciousXMLcounter.ps1 -------------------------------------------------------------------------------- /playground/old/vbr-get-all-restorepoints.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/playground/old/vbr-get-all-restorepoints.ps1 -------------------------------------------------------------------------------- /playground/old/vbr-get-security-events.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/playground/old/vbr-get-security-events.ps1 -------------------------------------------------------------------------------- /playground/vbr-get-backupcopyjob-details.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/playground/vbr-get-backupcopyjob-details.ps1 -------------------------------------------------------------------------------- /playground/vbr-get-jobdetails.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/playground/vbr-get-jobdetails.ps1 -------------------------------------------------------------------------------- /playground/vbr-get-jobrepodetails.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/playground/vbr-get-jobrepodetails.ps1 -------------------------------------------------------------------------------- /playground/vbr-security-event-flow.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/playground/vbr-security-event-flow.ps1 -------------------------------------------------------------------------------- /playground/vbr-vm-restore-multinic.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/playground/vbr-vm-restore-multinic.ps1 -------------------------------------------------------------------------------- /playground/vem-flr.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/playground/vem-flr.ps1 -------------------------------------------------------------------------------- /recipe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/recipe.md -------------------------------------------------------------------------------- /vbazure/vbazure-suspicious-backupsize/vbazure-suspicious-backupsize.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbazure/vbazure-suspicious-backupsize/vbazure-suspicious-backupsize.ps1 -------------------------------------------------------------------------------- /vbazure/vbazure-workertag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbazure/vbazure-workertag/README.md -------------------------------------------------------------------------------- /vbazure/vbazure-workertag/vbazure-workertag.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbazure/vbazure-workertag/vbazure-workertag.ps1 -------------------------------------------------------------------------------- /vbo/vb365-bkp-job-filter/vb365-bkp-job-filter.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbo/vb365-bkp-job-filter/vb365-bkp-job-filter.ps1 -------------------------------------------------------------------------------- /vbo/vb365-create-entra-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbo/vb365-create-entra-app/README.md -------------------------------------------------------------------------------- /vbo/vb365-create-entra-app/vb365-create-entra-app.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbo/vb365-create-entra-app/vb365-create-entra-app.ps1 -------------------------------------------------------------------------------- /vbo/vb365-create-entra-app/vb365-update-entra-app.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbo/vb365-create-entra-app/vb365-update-entra-app.ps1 -------------------------------------------------------------------------------- /vbo/vb365-exo-recovery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbo/vb365-exo-recovery/README.md -------------------------------------------------------------------------------- /vbo/vb365-exo-recovery/vb365-exo-recovery.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbo/vb365-exo-recovery/vb365-exo-recovery.ps1 -------------------------------------------------------------------------------- /vbo/vb365-exo-scan/vb365-exo-single-scan.ps1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vbo/vb365-exo-scan/vb365-multi-scan.ps1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vbo/vb365-exo-usage-report/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbo/vb365-exo-usage-report/README.md -------------------------------------------------------------------------------- /vbo/vb365-exo-usage-report/vb365-exo-usage-report-basicauth.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbo/vb365-exo-usage-report/vb365-exo-usage-report-basicauth.ps1 -------------------------------------------------------------------------------- /vbo/vb365-exo-usage-report/vb365-exo-usage-report.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbo/vb365-exo-usage-report/vb365-exo-usage-report.ps1 -------------------------------------------------------------------------------- /vbo/vb365-exrestore-checker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbo/vb365-exrestore-checker/README.md -------------------------------------------------------------------------------- /vbo/vb365-exrestore-checker/vb365-exrestore-checker.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbo/vb365-exrestore-checker/vb365-exrestore-checker.ps1 -------------------------------------------------------------------------------- /vbo/vb365-odb-scanner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbo/vb365-odb-scanner/README.md -------------------------------------------------------------------------------- /vbo/vb365-odb-scanner/vb365-odb-single-scan.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbo/vb365-odb-scanner/vb365-odb-single-scan.ps1 -------------------------------------------------------------------------------- /vbo/vb365-odrestore-checker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbo/vb365-odrestore-checker/README.md -------------------------------------------------------------------------------- /vbo/vb365-odrestore-checker/vb365-odrestore-checker.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbo/vb365-odrestore-checker/vb365-odrestore-checker.ps1 -------------------------------------------------------------------------------- /vbo/vb365-repo-userlist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbo/vb365-repo-userlist/README.md -------------------------------------------------------------------------------- /vbo/vb365-repo-userlist/vb365-repo-userlist.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbo/vb365-repo-userlist/vb365-repo-userlist.ps1 -------------------------------------------------------------------------------- /vbo/vbo-auditcfg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbo/vbo-auditcfg/README.md -------------------------------------------------------------------------------- /vbo/vbo-auditcfg/vbo-auditcfg.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbo/vbo-auditcfg/vbo-auditcfg.ps1 -------------------------------------------------------------------------------- /vbo/vbo-health-checker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbo/vbo-health-checker/README.md -------------------------------------------------------------------------------- /vbo/vbo-health-checker/vbo-health-checker.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbo/vbo-health-checker/vbo-health-checker.ps1 -------------------------------------------------------------------------------- /vbo/z_old/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbo/z_old/README.md -------------------------------------------------------------------------------- /vbo/z_old/vbo-object-tenant-create/vbo-object-tenant-create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbo/z_old/vbo-object-tenant-create/vbo-object-tenant-create.ps1 -------------------------------------------------------------------------------- /vbo/z_old/vbo-teams-adder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbo/z_old/vbo-teams-adder/README.md -------------------------------------------------------------------------------- /vbo/z_old/vbo-teams-adder/vbo-teams-adder.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbo/z_old/vbo-teams-adder/vbo-teams-adder.ps1 -------------------------------------------------------------------------------- /vbr/backup-scanning-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/backup-scanning-tools/README.md -------------------------------------------------------------------------------- /vbr/backup-scanning-tools/backup-scanning-tools-installer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/backup-scanning-tools/backup-scanning-tools-installer.ps1 -------------------------------------------------------------------------------- /vbr/backup-scanning-tools/backup-scanning-tools-menu.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/backup-scanning-tools/backup-scanning-tools-menu.ps1 -------------------------------------------------------------------------------- /vbr/backup-scanning-tools/backup-scanning-tools-webmenu.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/backup-scanning-tools/backup-scanning-tools-webmenu.ps1 -------------------------------------------------------------------------------- /vbr/backup-scanning-tools/pictures/backup-scanning-tools-webconsole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/backup-scanning-tools/pictures/backup-scanning-tools-webconsole.png -------------------------------------------------------------------------------- /vbr/backup-scanning-tools/pictures/menu-selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/backup-scanning-tools/pictures/menu-selection.png -------------------------------------------------------------------------------- /vbr/backup-scanning-tools/scanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/backup-scanning-tools/scanner.png -------------------------------------------------------------------------------- /vbr/demo-malware-detection-api/demo-malware-detection-api.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/demo-malware-detection-api/demo-malware-detection-api.ps1 -------------------------------------------------------------------------------- /vbr/misc/file-integrity-monitor/file-integrity-monitor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/misc/file-integrity-monitor/file-integrity-monitor.ps1 -------------------------------------------------------------------------------- /vbr/monitoring_light/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/monitoring_light/README.md -------------------------------------------------------------------------------- /vbr/monitoring_light/job-stats.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/monitoring_light/job-stats.ps1 -------------------------------------------------------------------------------- /vbr/monitoring_light/monitoring_light.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/monitoring_light/monitoring_light.ps1 -------------------------------------------------------------------------------- /vbr/monitoring_light/rts-extractor-manual-v11.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/monitoring_light/rts-extractor-manual-v11.ps1 -------------------------------------------------------------------------------- /vbr/monitoring_light/rts-extractor-manual-v12.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/monitoring_light/rts-extractor-manual-v12.ps1 -------------------------------------------------------------------------------- /vbr/monitoring_light/rts-extractor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/monitoring_light/rts-extractor.ps1 -------------------------------------------------------------------------------- /vbr/syslog/elk-with-veeam-one/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/syslog/elk-with-veeam-one/README.md -------------------------------------------------------------------------------- /vbr/syslog/elk-with-veeam-one/dashboards/vdp-kibana-export.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/syslog/elk-with-veeam-one/dashboards/vdp-kibana-export.ndjson -------------------------------------------------------------------------------- /vbr/syslog/elk-with-veeam-one/pictures/elk-security-dashboard-vone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/syslog/elk-with-veeam-one/pictures/elk-security-dashboard-vone.png -------------------------------------------------------------------------------- /vbr/syslog/elk/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vbr/syslog/elk/dashboards/vbr-kibana-export.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/syslog/elk/dashboards/vbr-kibana-export.ndjson -------------------------------------------------------------------------------- /vbr/syslog/elk/detection-rules/vbr-detection-rules-export.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/syslog/elk/detection-rules/vbr-detection-rules-export.ndjson -------------------------------------------------------------------------------- /vbr/syslog/event-filter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/syslog/event-filter/README.md -------------------------------------------------------------------------------- /vbr/syslog/event-filter/event-id-list-dec24.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/syslog/event-filter/event-id-list-dec24.csv -------------------------------------------------------------------------------- /vbr/syslog/event-filter/vbr-generate-syslog-event-filter.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/syslog/event-filter/vbr-generate-syslog-event-filter.ps1 -------------------------------------------------------------------------------- /vbr/syslog/graylog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/syslog/graylog/README.md -------------------------------------------------------------------------------- /vbr/syslog/graylog/veeam-data-platform-content-pack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/syslog/graylog/veeam-data-platform-content-pack.json -------------------------------------------------------------------------------- /vbr/vbr-cleanrestore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-cleanrestore/README.md -------------------------------------------------------------------------------- /vbr/vbr-cleanrestore/vbr-cleanrestore.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-cleanrestore/vbr-cleanrestore.ps1 -------------------------------------------------------------------------------- /vbr/vbr-detection-engine-includer/vbr-detection-engine-includer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-detection-engine-includer/vbr-detection-engine-includer.ps1 -------------------------------------------------------------------------------- /vbr/vbr-dr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-dr/README.md -------------------------------------------------------------------------------- /vbr/vbr-dr/vbr-dr.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-dr/vbr-dr.ps1 -------------------------------------------------------------------------------- /vbr/vbr-dynamic-surebackup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-dynamic-surebackup/README.md -------------------------------------------------------------------------------- /vbr/vbr-dynamic-surebackup/vbr-dynamic-surebackup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-dynamic-surebackup/vbr-dynamic-surebackup.ps1 -------------------------------------------------------------------------------- /vbr/vbr-eventid-comparer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-eventid-comparer/README.md -------------------------------------------------------------------------------- /vbr/vbr-eventid-comparer/vbr-eventid-comparer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-eventid-comparer/vbr-eventid-comparer.ps1 -------------------------------------------------------------------------------- /vbr/vbr-flr-comparator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-flr-comparator/README.md -------------------------------------------------------------------------------- /vbr/vbr-flr-comparator/vbr-flr-comparator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-flr-comparator/vbr-flr-comparator.ps1 -------------------------------------------------------------------------------- /vbr/vbr-flr-hashscanner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-flr-hashscanner/README.md -------------------------------------------------------------------------------- /vbr/vbr-flr-hashscanner/vbr-flr-auto-hashscanner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-flr-hashscanner/vbr-flr-auto-hashscanner.ps1 -------------------------------------------------------------------------------- /vbr/vbr-flr-hashscanner/vbr-flr-hashscanner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-flr-hashscanner/vbr-flr-hashscanner.ps1 -------------------------------------------------------------------------------- /vbr/vbr-get-adchanges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-get-adchanges/README.md -------------------------------------------------------------------------------- /vbr/vbr-get-adchanges/vbr-get-adchanges.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-get-adchanges/vbr-get-adchanges.ps1 -------------------------------------------------------------------------------- /vbr/vbr-get-job-encryption-info/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-get-job-encryption-info/README.md -------------------------------------------------------------------------------- /vbr/vbr-get-job-encryption-info/vbr-get-job-encryption-info.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-get-job-encryption-info/vbr-get-job-encryption-info.ps1 -------------------------------------------------------------------------------- /vbr/vbr-get-jobcfg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-get-jobcfg/README.md -------------------------------------------------------------------------------- /vbr/vbr-get-jobcfg/vbr-get-jobcfg.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-get-jobcfg/vbr-get-jobcfg.ps1 -------------------------------------------------------------------------------- /vbr/vbr-get-malwareevents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-get-malwareevents/README.md -------------------------------------------------------------------------------- /vbr/vbr-get-malwareevents/vbr-get-malwareevents.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-get-malwareevents/vbr-get-malwareevents.ps1 -------------------------------------------------------------------------------- /vbr/vbr-get-objectstorageusage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-get-objectstorageusage/README.md -------------------------------------------------------------------------------- /vbr/vbr-get-objectstorageusage/vbr-get-objectstorageusage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-get-objectstorageusage/vbr-get-objectstorageusage.ps1 -------------------------------------------------------------------------------- /vbr/vbr-get-offloadstats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-get-offloadstats/README.md -------------------------------------------------------------------------------- /vbr/vbr-get-offloadstats/vbr-get-offloadstats.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-get-offloadstats/vbr-get-offloadstats.ps1 -------------------------------------------------------------------------------- /vbr/vbr-get-sqllogshippingstatus/vbr-get-sqllogshippingstatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-get-sqllogshippingstatus/vbr-get-sqllogshippingstatus.ps1 -------------------------------------------------------------------------------- /vbr/vbr-get-tapeinfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-get-tapeinfo/README.md -------------------------------------------------------------------------------- /vbr/vbr-get-tapeinfo/pictures/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-get-tapeinfo/pictures/output.png -------------------------------------------------------------------------------- /vbr/vbr-get-tapeinfo/vbr-get-tapeinfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-get-tapeinfo/vbr-get-tapeinfo.ps1 -------------------------------------------------------------------------------- /vbr/vbr-guest-index-data-scan-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-guest-index-data-scan-manager/README.md -------------------------------------------------------------------------------- /vbr/vbr-guest-index-data-scan-manager/vbr-guest-index-data-scan-manager.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-guest-index-data-scan-manager/vbr-guest-index-data-scan-manager.ps1 -------------------------------------------------------------------------------- /vbr/vbr-inline-scan-log-analysis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-inline-scan-log-analysis/README.md -------------------------------------------------------------------------------- /vbr/vbr-inline-scan-log-analysis/vbr-inline-scan-event-log-analysis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-inline-scan-log-analysis/vbr-inline-scan-event-log-analysis -------------------------------------------------------------------------------- /vbr/vbr-inline-scan-log-analysis/vbr-inline-scan-log-analysis.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-inline-scan-log-analysis/vbr-inline-scan-log-analysis.ps1 -------------------------------------------------------------------------------- /vbr/vbr-instantdiskrecovery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-instantdiskrecovery/README.md -------------------------------------------------------------------------------- /vbr/vbr-instantdiskrecovery/vbr-instantdiskrecovery.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-instantdiskrecovery/vbr-instantdiskrecovery.ps1 -------------------------------------------------------------------------------- /vbr/vbr-job-scanner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-job-scanner/README.md -------------------------------------------------------------------------------- /vbr/vbr-job-scanner/pictures/advanced-settings-script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-job-scanner/pictures/advanced-settings-script.png -------------------------------------------------------------------------------- /vbr/vbr-job-scanner/pictures/job-bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-job-scanner/pictures/job-bad.png -------------------------------------------------------------------------------- /vbr/vbr-job-scanner/pictures/job-good.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-job-scanner/pictures/job-good.png -------------------------------------------------------------------------------- /vbr/vbr-job-scanner/vbr-job-scanner-post-script.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-job-scanner/vbr-job-scanner-post-script.ps1 -------------------------------------------------------------------------------- /vbr/vbr-job-scanner/vbr-job-scanner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-job-scanner/vbr-job-scanner.ps1 -------------------------------------------------------------------------------- /vbr/vbr-nas-avscanner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-nas-avscanner/README.md -------------------------------------------------------------------------------- /vbr/vbr-nas-avscanner/vbr-nas-avscanner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-nas-avscanner/vbr-nas-avscanner.ps1 -------------------------------------------------------------------------------- /vbr/vbr-nas-hashcompare/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-nas-hashcompare/README.md -------------------------------------------------------------------------------- /vbr/vbr-nas-hashcompare/vbr-nas-hashcompare.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-nas-hashcompare/vbr-nas-hashcompare.ps1 -------------------------------------------------------------------------------- /vbr/vbr-nasjob-scanner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-nasjob-scanner/README.md -------------------------------------------------------------------------------- /vbr/vbr-nasjob-scanner/pictures/advanced-settings-nasjob-script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-nasjob-scanner/pictures/advanced-settings-nasjob-script.png -------------------------------------------------------------------------------- /vbr/vbr-nasjob-scanner/pictures/nasjob-bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-nasjob-scanner/pictures/nasjob-bad.png -------------------------------------------------------------------------------- /vbr/vbr-nasjob-scanner/pictures/placeholder: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vbr/vbr-nasjob-scanner/pictures/tested-job-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-nasjob-scanner/pictures/tested-job-source.png -------------------------------------------------------------------------------- /vbr/vbr-nasjob-scanner/vbr-nasjob-scanner-post-script.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-nasjob-scanner/vbr-nasjob-scanner-post-script.ps1 -------------------------------------------------------------------------------- /vbr/vbr-nasjob-scanner/vbr-nasjob-scanner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-nasjob-scanner/vbr-nasjob-scanner.ps1 -------------------------------------------------------------------------------- /vbr/vbr-port-lister/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-port-lister/README.md -------------------------------------------------------------------------------- /vbr/vbr-port-lister/ServicesFIleHistory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-port-lister/ServicesFIleHistory.md -------------------------------------------------------------------------------- /vbr/vbr-port-lister/agents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-port-lister/agents.txt -------------------------------------------------------------------------------- /vbr/vbr-port-lister/explorers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-port-lister/explorers.txt -------------------------------------------------------------------------------- /vbr/vbr-port-lister/services.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-port-lister/services.txt -------------------------------------------------------------------------------- /vbr/vbr-port-lister/vbr-port-lister.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-port-lister/vbr-port-lister.ps1 -------------------------------------------------------------------------------- /vbr/vbr-restore-vm-files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-restore-vm-files/README.md -------------------------------------------------------------------------------- /vbr/vbr-restore-vm-files/vbr-restore-vm-files.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-restore-vm-files/vbr-restore-vm-files.ps1 -------------------------------------------------------------------------------- /vbr/vbr-scan-backups/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-scan-backups/README.md -------------------------------------------------------------------------------- /vbr/vbr-scan-backups/vbr-scan-backups.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-scan-backups/vbr-scan-backups.ps1 -------------------------------------------------------------------------------- /vbr/vbr-scan-malware-detection-logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-scan-malware-detection-logs/README.md -------------------------------------------------------------------------------- /vbr/vbr-scan-malware-detection-logs/vbr-scan-malware-detection-logs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-scan-malware-detection-logs/vbr-scan-malware-detection-logs.ps1 -------------------------------------------------------------------------------- /vbr/vbr-securerestore-lnx/README-iSCSI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-securerestore-lnx/README-iSCSI.md -------------------------------------------------------------------------------- /vbr/vbr-securerestore-lnx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-securerestore-lnx/README.md -------------------------------------------------------------------------------- /vbr/vbr-securerestore-lnx/v12.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-securerestore-lnx/v12.1/README.md -------------------------------------------------------------------------------- /vbr/vbr-securerestore-lnx/v12.1/vbr-securerestore.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-securerestore-lnx/v12.1/vbr-securerestore.ps1 -------------------------------------------------------------------------------- /vbr/vbr-securerestore-lnx/vbr-securerestore-iscsi.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-securerestore-lnx/vbr-securerestore-iscsi.ps1 -------------------------------------------------------------------------------- /vbr/vbr-securerestore-lnx/vbr-securerestore-lnx.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-securerestore-lnx/vbr-securerestore-lnx.ps1 -------------------------------------------------------------------------------- /vbr/vbr-securerestore-lnx/vbr-securerestore.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-securerestore-lnx/vbr-securerestore.ps1 -------------------------------------------------------------------------------- /vbr/vbr-staged-restore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-staged-restore/README.md -------------------------------------------------------------------------------- /vbr/vbr-staged-restore/WinAVDeepScan.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-staged-restore/WinAVDeepScan.ps1 -------------------------------------------------------------------------------- /vbr/vbr-staged-restore/vbr-staged-restore.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-staged-restore/vbr-staged-restore.ps1 -------------------------------------------------------------------------------- /vbr/vbr-surebackup-scripts/WinSetHTTPProxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-surebackup-scripts/WinSetHTTPProxy/README.md -------------------------------------------------------------------------------- /vbr/vbr-surebackup-scripts/lnx-set-http-proxy/LnxSetHTTPProxy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-surebackup-scripts/lnx-set-http-proxy/LnxSetHTTPProxy.ps1 -------------------------------------------------------------------------------- /vbr/vbr-surebackup-scripts/lnx-set-http-proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-surebackup-scripts/lnx-set-http-proxy/README.md -------------------------------------------------------------------------------- /vbr/vbr-tape-verification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-tape-verification/README.md -------------------------------------------------------------------------------- /vbr/vbr-tape-verification/vbr-tape-verification.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vbr/vbr-tape-verification/vbr-tape-verification.ps1 -------------------------------------------------------------------------------- /vone/README.md: -------------------------------------------------------------------------------- 1 | Useful Powershell scripts for Veeam ONE 2 | -------------------------------------------------------------------------------- /vone/vone-get-alerts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vone/vone-get-alerts/README.md -------------------------------------------------------------------------------- /vone/vone-get-alerts/vone-get-alerts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vone/vone-get-alerts/vone-get-alerts.ps1 -------------------------------------------------------------------------------- /vone/vone-remediate-surebackup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vone/vone-remediate-surebackup/README.md -------------------------------------------------------------------------------- /vone/vone-remediate-surebackup/vone-remediate-surebackup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vone/vone-remediate-surebackup/vone-remediate-surebackup.ps1 -------------------------------------------------------------------------------- /vro/empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vro/vro-get-planstatus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vro/vro-get-planstatus/README.md -------------------------------------------------------------------------------- /vro/vro-get-planstatus/vro-get-planstatus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vro/vro-get-planstatus/vro-get-planstatus.ps1 -------------------------------------------------------------------------------- /vspc/blank: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vspc/vspc-get-reseller-usage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vspc/vspc-get-reseller-usage/README.md -------------------------------------------------------------------------------- /vspc/vspc-get-reseller-usage/vspc-get-reseller-usage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetanothermightytool/powershell/HEAD/vspc/vspc-get-reseller-usage/vspc-get-reseller-usage.ps1 --------------------------------------------------------------------------------