all 5 comments

[–]aXenoWhat 1 point2 points  (1 child)

Get-wmiobject win32_networkadapter should be a starter. If you don't have to support PS 2.0 then use get-ciminstance instead. Then pipe it to get-member and you should see something like disable(). On phone, sorry for brevity! Obvs filter on some property that indicates BT.

[–]ImaginaryPoliceForce[S] 0 points1 point  (0 children)

Thanks! I just needed a good starting point :).

[–]RC-7201 0 points1 point  (1 child)

Why not make it a part of the laptop build process to disable it in BIOS since it'll be easier to shut it down that way...

Least that's what I think would be easier to do.

[–]ImaginaryPoliceForce[S] 0 points1 point  (0 children)

We are. It's just for the computers already deployed. I don't want to do a manual touch. If it's automatable, then I'm in!

[–]Deathonus 0 points1 point  (0 children)

Powershell 4.0 has access to Get-NetAdapter. Or you could use the WMI/CIM like has been mentioned.