Skip to content
View isarns's full-sized avatar
:octocat:
:octocat:

Highlights

  • Pro
Block or Report

Block or report isarns

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Find_GPOs.ps1 Find_GPOs.ps1
    1
    Get-GPO -All | ? {
    2
        $report = Get-GPOReport -Guid $_.id -ReportType XML
    3
        $report.Contains("<q1:Name>**first Policie Name**</q1:Name>
    4
                          <q1:Units />
    5
                          <q1:displayboolean>**false/true**</q1:displayboolean>")` #false for disable ... true for enable
  2. Sccm BackUp Sccm BackUp
    1
    $backup_path="C:\SccmBackUp"
    2
    $sccm_Installation_Path="C:\Program Files\Microsoft Configuration Manager"
    3
    $date=get-date -Format dd.MM.yy
    4
    
                  
    5
    
                  
  3. This PowerShell script test if your ... This PowerShell script test if your machine trust a certificate.
    1
    $certLoc=Get-ChildItem -Path C:\Path\To\Cert\Cert.cer
    2
    $cert=[System.Security.Cryptography.X509Certificates.X509Certificate2]::new($certLoc)
    3
    Test-Certificate $cert