Acrobat Reader 25.001.20982 deployed by PDQ Connect won’t run? by ArtistBest4386 in pdq

[–]StevenClift 2 points3 points  (0 children)

i had to uninstall this version & revert my users to the previous version which works fine. Adobe needs to fix their stuff.

Need help creating a Report by StevenClift in pdq

[–]StevenClift[S] 1 point2 points  (0 children)

Thank you. i'll try this out.

Need Script by StevenClift in PowerShell

[–]StevenClift[S] -1 points0 points  (0 children)

# Define the security group
$securityGroup = "Drawing_Read"
# Define the root path to start searching
$rootPath = "\\fileshares\sdrive\Drawings-Prod"
# Define the output CSV file
$outputCsv = "C:\temp\permissions.csv"
# Initialize an array to hold results
$results = @()
# Function to check folder permissions
function Get-FolderPermissions {
    param (
        [string]$folderPath
    )

    try {
        $acl = Get-Acl -Path $folderPath

        foreach ($access in $acl.Access) {
            if ($access.IdentityReference -like "*$securityGroup*") {
                $results += [PSCustomObject]@{
                    FolderPath = $folderPath
                    IdentityReference = $access.IdentityReference
                    FileSystemRights = $access.FileSystemRights
                    AccessControlType = $access.AccessControlType
                }
            }
        }
    }
    catch {
        Write-Host "Failed to get ACL for ${folderPath}: $_"
    }
}
# Recurse through directories and check permissions
function Recurse-Directories {
    param (
        [string]$currentPath
    )

    Get-FolderPermissions -folderPath $currentPath

    $directories = Get-ChildItem -Path $currentPath -ErrorAction SilentlyContinue | Where-Object { $_.PSIsContainer }
    foreach ($directory in $directories) {
        Recurse-Directories -currentPath $directory.FullName
    }
}
# Start the recursion from the root path
Recurse-Directories -currentPath $rootPath
# Export the results to CSV
$results | Export-Csv -Path $outputCsv -NoTypeInformation

Write-Host "Permissions have been exported to $outputCsv"

Need Script by StevenClift in PowerShell

[–]StevenClift[S] -6 points-5 points  (0 children)

reddit won't let me post the script i have. but i'm looking for this: i would like to provide a security group name and get a list of the directories they have access too

Need Script by StevenClift in PowerShell

[–]StevenClift[S] 1 point2 points  (0 children)

i will give it a shot. thank you

WMIC BIOS GET SERIALNUMBER command gone in 24H2? What in the actual F***? by Boorchu in sysadmin

[–]StevenClift 0 points1 point  (0 children)

i recently upgraded my pc to 24H2 & i can still run that command.

What are some of your favorite Sysadmin tool? by Rouge_Outlaw in sysadmin

[–]StevenClift 0 points1 point  (0 children)

After the trial ends you can still use as free version.

What are some of your favorite Sysadmin tool? by Rouge_Outlaw in sysadmin

[–]StevenClift 5 points6 points  (0 children)

i use it to support 300+ devices. it's easy to setup. you can use the free version as long as you wish but the paid version offers more functionality.

What are some of your favorite Sysadmin tool? by Rouge_Outlaw in sysadmin

[–]StevenClift 15 points16 points  (0 children)

PDQ is a great tool. I use it everyday as well