Hello everyone,
I’m sorry for poor English.
I would like to start with Powershell. First I want to explore the possibilities to configure my local computer (Windows 10) with Powershell. I try, in my opinion a simple thing, to uninstall multiple software packages. But it seems it’s still not so easy for me.
I wrote this and I got no error, but it doesn’t work. Obviously I don’t understand it yet. Can you tell me how it works please? Thank you.
PS C:\> get-package -name *sapien* Name Version Source ProviderName ---- ------- ------ ------------ SAPIEN Document Explorer 2018 3.1.82.0 Programs SAPIEN PowerShell Studio 2018 5.5.149.0 Programs SAPIEN ScriptMerge 2018 1.3.74.0 Programs PS C:\> get-package -name *sapien* | uninstall-package PS C:\> get-package -name *sapien* Name Version Source ProviderName ---- ------- ------ ------------ SAPIEN Document Explorer 2018 3.1.82.0 Programs SAPIEN PowerShell Studio 2018 5.5.149.0 Programs SAPIEN ScriptMerge 2018 1.3.74.0 Programs PS C:\>