
Craig Whetton
- Total activity 58
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 12
- Subscriptions 16
Activity overview
Latest activity by Craig Whetton-
Craig Whetton created a post,
PowerShell Scanner results True/False automatically true if no scan
We set up a new PowerShell scanner recently, specifically the one around Windows11 compatibility shown on the webcast. We realised after putting it in service that we wanted to collect some more da...
-
Craig Whetton created a post,
PSCustomObject and Inventory PowerShell Scanner
So we have a PowerShell scanner in Inventory to list what WiFi profiles are on a laptop. $list=(netsh.exe wlan show profiles) -match '\s{2,}:\s'foreach($item in $list){$array = $item.split(":") $a...
-
Craig Whetton commented,
Thank you! That has worked for the most part. I've got a couple of issues now. Powershell believes that the data it receives is in MM/dd/yyyy format when it is really in dd/MM/yyyy format. The prob...
-
Craig Whetton created a post,
Dynamic Collection form PowerShell scanner
Over the last week, I have been playing with the PowerShell scanner to bring our WSUS data into inventory. During my testing, this is how my data was in Inventory: Which allowed me to create a dyn...
-
Craig Whetton commented,
ah has hit the nail on the head. That's exactly what I was going for. Yesterday I had a CSV with records for 838 computers. Of those computers, there were roughly 50 different model numbers, althou...
-
Craig Whetton created a post,
Feature request - match CSV import with other fields
As far as I'm aware, this isn't currently capable. I'd like to be able to match up a CSV import with fields other than the computer name (specifically the model number in this case). Whilst I could...
-
Craig Whetton created a post,
Update custom field via PowerShell
Is there any way of updating custom fields via PowerShell? My aim is to just be able to run a script on a PC which will then update the custom field with the relevant information pulled by the scri...
-
Craig Whetton commented,
This article is 4 years old, but I believe it is still all correct https://help.pdq.com/hc/en-us/community/posts/211692887-Non-Domain-for-the-millionth-time-
-
Craig Whetton created a post,
Feature request
Apologies if someone has already requested this/if it's already a feature (though I've not come across it). In PDQ Inventory, it says when the scan was triggered by PDQ Deploy. If possible, could i...
-
Craig Whetton commented,
This works. It's probably not the best way of doing this. $user = "$env:USERNAME"; $group = "Administrators"; $groupObj =[ADSI]"WinNT://./$group,group" $membersObj = @($groupObj.psbase.Invoke("Mem...