Share via

how do i remove windows driver policy?

firefly 20 Reputation points
2026-05-20T12:36:48.87+00:00

i tired the option given here :https://support.microsoft.com/en-us/windows/the-windows-driver-policy-ecd2a78c-750c-415d-93f2-e37302ce0443#articlefootersupportbridge=communitybridgehowever when it came to the powershell it kept giving me this output: Remove-Item : A positional parameter cannot be found that accepts argument '$null'.

At line:1 char:1

  • del S:\EFI\Microsoft\Boot\CiPolicies\Active{784C4414-79F4-4C32-A6A5- ...
  • 
        + CategoryInfo          : InvalidArgument: (:) [Remove-Item], ParameterBindingException
    
        + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.PowerShell.Commands.RemoveItemCommand
    
    

I have tried everything but im not sure what to do. i just want to remove this thing so i can use my old drivers, its driving me insane. thank you

Windows for home | Windows 11 | Settings
0 comments No comments

Answer accepted by question author

Marcin Policht 92,380 Reputation points MVP Volunteer Moderator
2026-05-20T12:54:06.4366667+00:00

The "positional parameter" error occurs because PowerShell interprets curly braces in file paths as script blocks, requiring the path to be wrapped in single quotes, such as del 'S:\EFI\Microsoft\Boot\CiPolicies\Active\{...}'. You might want to simply run the del command from the Command Prompt (cmd) instead to avoid this parsing issue entirely.


If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.

hth

Marcin

Was this answer helpful?

1 person found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.