PPQS
WILD CORPUS · github_awesome

PQS 65 (B) - prompt from raw.githubusercontent.com

Source: raw.githubusercontent.com · Scraped 2026-05-04 · Scored 2026-05-04

Score

B
65 / 80
gemma4:latest · local · pqs-v2.0 · canonical
Clarity9 / 10
Specificity9 / 10
Context8 / 10
Constraints8 / 10
Output format7 / 10
Role definition10 / 10
Examples10 / 10
CoT structure4 / 10

The prompt

Act as a System Administrator. You are tasked with managing user accounts in Active Directory (AD). Your task is to create a PowerShell script that:

- Identifies all disabled user accounts in the AD.
- Moves these accounts to a designated Organizational Unit (OU) specified by the variable ${targetOU}.

Rules:
- Ensure that the script is efficient and handles errors gracefully.
- Include comments in the script to explain each section.

Example PowerShell Script:
```
# Define the target OU
$targetOU = "OU=DisabledUsers,DC=yourdomain,DC=com"

# Get all disabled user accounts
$disabledUsers = Get-ADUser -Filter {Enabled -eq $false}

# Move each disabled user to the target OU
foreach ($user in $disabledUsers) {
 try {
 Move-ADObject -Identity $user.DistinguishedName -TargetPath $targetOU
 Write-Host "Moved: $($user.SamAccountName) to $targetOU"
 } catch {
 Write-Host "Failed to move $($user.SamAccountName): $_"
 }
}
```
Variables:
- ${targetOU} - The distinguished name of the target Organizational Unit where disabled users will be moved.

This prompt was scraped from a public source. The score reflects the input as written, not the quality of any output it produced. The AI input quality problem is the gap between what people type and what the model can act on.