├── .gitignore ├── Add-WinEventXMLData.psm1 ├── Chocolatey-installer.ps1 ├── Connect-AzureAD-Scripts.ps1 ├── Convert-ManaboxToMoxfield.ps1 ├── Convert-ObjectsToCsv.ps1 ├── ConvertTo-Markdown.ps1 ├── Copy-CameraPhotos.ps1 ├── Copy-CameraVIdeos.ps1 ├── Copy-FilesToVMwareGuest.ps1 ├── Copy-FilesWithRelativePath.ps1 ├── Copy-SigmaRuleByID.ps1 ├── Create-EventLog-and-Event.ps1 ├── Create-NamedPipe.ps1 ├── Create-PowerShellTranscriptShare.ps1 ├── Create-SigmaRulesFromDir.ps1 ├── Disable-CredentialGuard.ps1 ├── Enable-O365_Subscriptions.ps1 ├── ExchangePowerShellScripts.md ├── Expand-ObjectArray.ps1 ├── Get-ACASPluginText.psm1 ├── Get-BrowserCache.ps1 ├── Get-Comparison.ps1 ├── Get-DecodedMRU.ps1 ├── Get-DuplicateFiles.ps1 ├── Get-EditDistance.psm1 ├── Get-Entropy.psm1 ├── Get-Files.psm1 ├── Get-FlatYAML.ps1 ├── Get-MagicCardName.ps1 ├── Get-MtgpicsArt.ps1 ├── Get-NessusReport.ps1 ├── Get-Office365UnifiedAuditLogs.ps1 ├── Get-OnlineComputers.ps1 ├── Get-StringHash.ps1 ├── Get-THR_Handles.psm1 ├── Invoke-Portscan.psm1 ├── LICENSE ├── Merge-JSON.ps1 ├── Misc-Active-Directory.ps1 ├── Misc-Exchange-Online.md ├── Misc-Regular-Expression.md ├── Misc-Scheduled-Tasks.md ├── Misc-WIndows-Events.md ├── Misc-WinRM.md ├── Misc-Windows-Firewall.md ├── Misc-Windows-Registry.md ├── Misc-git.md ├── Misc-tar.md ├── Miscellaneous.md ├── Move-UserProfile.ps1 ├── New-BlenderConfigBackup.ps1 ├── New-ISOFile.ps1 ├── New-LogEntry.psm1 ├── New-SharePerDisk.ps1 ├── Parse-IPAMNetworks.ps1 ├── Parse-NetworkCKP.ps1 ├── Remove-Duplicates.ps1 ├── Remove-LogRhythmBackups.ps1 ├── Remove-SigmaFieldsSelection.ps1 ├── Remove-ZoneIdentifier.ps1 ├── Rename-MagicCardtoName.ps1 ├── SCCM ├── Get-THR_SCCM_BHO.psm1 ├── Get-THR_SCCM_Computer.psm1 ├── Get-THR_SCCM_EnvVars.psm1 ├── Get-THR_SCCM_GroupMembers.psm1 ├── Get-THR_SCCM_LogicalDisks.psm1 ├── Get-THR_SCCM_Services.psm1 ├── Get-THR_SCCM_Sessions.psm1 ├── Get-THR_SCCM_Software.psm1 ├── Get-THR_SCCM_USBDevices.psm1 └── Get-THR_SCCM_WinEvents.psm1 ├── Set-DateTaken-from-FileName.ps1 ├── Set-EnhancedLogging-NonSTIG-GPO.ps1 ├── Set-EnhancedLogging-NonSTIG-LGPO.ps1 ├── Set-EnhancedLogging-NonSTIG-Registry.ps1 ├── Set-EnhancedLogging-STIG-GPO.ps1 ├── Set-EnhancedLogging-STIG-LGPO.ps1 ├── Set-EnhancedLogging-STIG-Registry.ps1 ├── Set-NameToDateTaken.ps1 ├── Sigma-Convert.ps1 ├── Stayawake.ps1 ├── Test-SharePermissions.psm1 ├── TonysWIn11.ps1 ├── TonysWin10.ps1 ├── index.html ├── powershell_gui.ps1 ├── self-signed_code_certificate.ps1 ├── settings.ini └── sysmonv7-silencer.xml /.gitignore: -------------------------------------------------------------------------------- 1 | *.txt 2 | *.bak 3 | *.ico 4 | -------------------------------------------------------------------------------- /Add-WinEventXMLData.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Add-WinEventXMLData.psm1 -------------------------------------------------------------------------------- /Chocolatey-installer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Chocolatey-installer.ps1 -------------------------------------------------------------------------------- /Connect-AzureAD-Scripts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Connect-AzureAD-Scripts.ps1 -------------------------------------------------------------------------------- /Convert-ManaboxToMoxfield.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Convert-ManaboxToMoxfield.ps1 -------------------------------------------------------------------------------- /Convert-ObjectsToCsv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Convert-ObjectsToCsv.ps1 -------------------------------------------------------------------------------- /ConvertTo-Markdown.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/ConvertTo-Markdown.ps1 -------------------------------------------------------------------------------- /Copy-CameraPhotos.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Copy-CameraPhotos.ps1 -------------------------------------------------------------------------------- /Copy-CameraVIdeos.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Copy-CameraVIdeos.ps1 -------------------------------------------------------------------------------- /Copy-FilesToVMwareGuest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Copy-FilesToVMwareGuest.ps1 -------------------------------------------------------------------------------- /Copy-FilesWithRelativePath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Copy-FilesWithRelativePath.ps1 -------------------------------------------------------------------------------- /Copy-SigmaRuleByID.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Copy-SigmaRuleByID.ps1 -------------------------------------------------------------------------------- /Create-EventLog-and-Event.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Create-EventLog-and-Event.ps1 -------------------------------------------------------------------------------- /Create-NamedPipe.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Create-NamedPipe.ps1 -------------------------------------------------------------------------------- /Create-PowerShellTranscriptShare.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Create-PowerShellTranscriptShare.ps1 -------------------------------------------------------------------------------- /Create-SigmaRulesFromDir.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Create-SigmaRulesFromDir.ps1 -------------------------------------------------------------------------------- /Disable-CredentialGuard.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Disable-CredentialGuard.ps1 -------------------------------------------------------------------------------- /Enable-O365_Subscriptions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Enable-O365_Subscriptions.ps1 -------------------------------------------------------------------------------- /ExchangePowerShellScripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/ExchangePowerShellScripts.md -------------------------------------------------------------------------------- /Expand-ObjectArray.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Expand-ObjectArray.ps1 -------------------------------------------------------------------------------- /Get-ACASPluginText.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Get-ACASPluginText.psm1 -------------------------------------------------------------------------------- /Get-BrowserCache.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Get-BrowserCache.ps1 -------------------------------------------------------------------------------- /Get-Comparison.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Get-Comparison.ps1 -------------------------------------------------------------------------------- /Get-DecodedMRU.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Get-DecodedMRU.ps1 -------------------------------------------------------------------------------- /Get-DuplicateFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Get-DuplicateFiles.ps1 -------------------------------------------------------------------------------- /Get-EditDistance.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Get-EditDistance.psm1 -------------------------------------------------------------------------------- /Get-Entropy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Get-Entropy.psm1 -------------------------------------------------------------------------------- /Get-Files.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Get-Files.psm1 -------------------------------------------------------------------------------- /Get-FlatYAML.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Get-FlatYAML.ps1 -------------------------------------------------------------------------------- /Get-MagicCardName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Get-MagicCardName.ps1 -------------------------------------------------------------------------------- /Get-MtgpicsArt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Get-MtgpicsArt.ps1 -------------------------------------------------------------------------------- /Get-NessusReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Get-NessusReport.ps1 -------------------------------------------------------------------------------- /Get-Office365UnifiedAuditLogs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Get-Office365UnifiedAuditLogs.ps1 -------------------------------------------------------------------------------- /Get-OnlineComputers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Get-OnlineComputers.ps1 -------------------------------------------------------------------------------- /Get-StringHash.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Get-StringHash.ps1 -------------------------------------------------------------------------------- /Get-THR_Handles.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Get-THR_Handles.psm1 -------------------------------------------------------------------------------- /Invoke-Portscan.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Invoke-Portscan.psm1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/LICENSE -------------------------------------------------------------------------------- /Merge-JSON.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Merge-JSON.ps1 -------------------------------------------------------------------------------- /Misc-Active-Directory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Misc-Active-Directory.ps1 -------------------------------------------------------------------------------- /Misc-Exchange-Online.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Misc-Exchange-Online.md -------------------------------------------------------------------------------- /Misc-Regular-Expression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Misc-Regular-Expression.md -------------------------------------------------------------------------------- /Misc-Scheduled-Tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Misc-Scheduled-Tasks.md -------------------------------------------------------------------------------- /Misc-WIndows-Events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Misc-WIndows-Events.md -------------------------------------------------------------------------------- /Misc-WinRM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Misc-WinRM.md -------------------------------------------------------------------------------- /Misc-Windows-Firewall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Misc-Windows-Firewall.md -------------------------------------------------------------------------------- /Misc-Windows-Registry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Misc-Windows-Registry.md -------------------------------------------------------------------------------- /Misc-git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Misc-git.md -------------------------------------------------------------------------------- /Misc-tar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Misc-tar.md -------------------------------------------------------------------------------- /Miscellaneous.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Miscellaneous.md -------------------------------------------------------------------------------- /Move-UserProfile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Move-UserProfile.ps1 -------------------------------------------------------------------------------- /New-BlenderConfigBackup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/New-BlenderConfigBackup.ps1 -------------------------------------------------------------------------------- /New-ISOFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/New-ISOFile.ps1 -------------------------------------------------------------------------------- /New-LogEntry.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/New-LogEntry.psm1 -------------------------------------------------------------------------------- /New-SharePerDisk.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/New-SharePerDisk.ps1 -------------------------------------------------------------------------------- /Parse-IPAMNetworks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Parse-IPAMNetworks.ps1 -------------------------------------------------------------------------------- /Parse-NetworkCKP.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Parse-NetworkCKP.ps1 -------------------------------------------------------------------------------- /Remove-Duplicates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Remove-Duplicates.ps1 -------------------------------------------------------------------------------- /Remove-LogRhythmBackups.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Remove-LogRhythmBackups.ps1 -------------------------------------------------------------------------------- /Remove-SigmaFieldsSelection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Remove-SigmaFieldsSelection.ps1 -------------------------------------------------------------------------------- /Remove-ZoneIdentifier.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Remove-ZoneIdentifier.ps1 -------------------------------------------------------------------------------- /Rename-MagicCardtoName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Rename-MagicCardtoName.ps1 -------------------------------------------------------------------------------- /SCCM/Get-THR_SCCM_BHO.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/SCCM/Get-THR_SCCM_BHO.psm1 -------------------------------------------------------------------------------- /SCCM/Get-THR_SCCM_Computer.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/SCCM/Get-THR_SCCM_Computer.psm1 -------------------------------------------------------------------------------- /SCCM/Get-THR_SCCM_EnvVars.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/SCCM/Get-THR_SCCM_EnvVars.psm1 -------------------------------------------------------------------------------- /SCCM/Get-THR_SCCM_GroupMembers.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/SCCM/Get-THR_SCCM_GroupMembers.psm1 -------------------------------------------------------------------------------- /SCCM/Get-THR_SCCM_LogicalDisks.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/SCCM/Get-THR_SCCM_LogicalDisks.psm1 -------------------------------------------------------------------------------- /SCCM/Get-THR_SCCM_Services.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/SCCM/Get-THR_SCCM_Services.psm1 -------------------------------------------------------------------------------- /SCCM/Get-THR_SCCM_Sessions.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/SCCM/Get-THR_SCCM_Sessions.psm1 -------------------------------------------------------------------------------- /SCCM/Get-THR_SCCM_Software.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/SCCM/Get-THR_SCCM_Software.psm1 -------------------------------------------------------------------------------- /SCCM/Get-THR_SCCM_USBDevices.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/SCCM/Get-THR_SCCM_USBDevices.psm1 -------------------------------------------------------------------------------- /SCCM/Get-THR_SCCM_WinEvents.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/SCCM/Get-THR_SCCM_WinEvents.psm1 -------------------------------------------------------------------------------- /Set-DateTaken-from-FileName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Set-DateTaken-from-FileName.ps1 -------------------------------------------------------------------------------- /Set-EnhancedLogging-NonSTIG-GPO.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Set-EnhancedLogging-NonSTIG-GPO.ps1 -------------------------------------------------------------------------------- /Set-EnhancedLogging-NonSTIG-LGPO.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Set-EnhancedLogging-NonSTIG-LGPO.ps1 -------------------------------------------------------------------------------- /Set-EnhancedLogging-NonSTIG-Registry.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Set-EnhancedLogging-NonSTIG-Registry.ps1 -------------------------------------------------------------------------------- /Set-EnhancedLogging-STIG-GPO.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Set-EnhancedLogging-STIG-GPO.ps1 -------------------------------------------------------------------------------- /Set-EnhancedLogging-STIG-LGPO.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Set-EnhancedLogging-STIG-LGPO.ps1 -------------------------------------------------------------------------------- /Set-EnhancedLogging-STIG-Registry.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Set-EnhancedLogging-STIG-Registry.ps1 -------------------------------------------------------------------------------- /Set-NameToDateTaken.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Set-NameToDateTaken.ps1 -------------------------------------------------------------------------------- /Sigma-Convert.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Sigma-Convert.ps1 -------------------------------------------------------------------------------- /Stayawake.ps1: -------------------------------------------------------------------------------- 1 | $s=New-Object -c "Wscript.Shell";do{Start-Sleep 9;$s.sendkeys(".")}until($x=0) 2 | -------------------------------------------------------------------------------- /Test-SharePermissions.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/Test-SharePermissions.psm1 -------------------------------------------------------------------------------- /TonysWIn11.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/TonysWIn11.ps1 -------------------------------------------------------------------------------- /TonysWin10.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/TonysWin10.ps1 -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | content 2 | -------------------------------------------------------------------------------- /powershell_gui.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/powershell_gui.ps1 -------------------------------------------------------------------------------- /self-signed_code_certificate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/self-signed_code_certificate.ps1 -------------------------------------------------------------------------------- /settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/settings.ini -------------------------------------------------------------------------------- /sysmonv7-silencer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonyPhipps/Powershell/HEAD/sysmonv7-silencer.xml --------------------------------------------------------------------------------