/build/static/layout/Breadcrumb_cap_w.png

how to write powershell script to uninstall 3 guids. This is for HP Load runner

I have 3  guids to uninstall for one package hp loadrunner. How do I write script for 3 guids


0 Comments   [ + ] Show comments

Answers (2)

Answer Summary:
Posted by: jamie_kace 4 years ago
Brown Belt
0

Is there a reason you want to use PowerShell here?  I am a big fan of WMIC commands.  They are simple and can work in a batch file easily.  If you have the GUID it would be a simple command like this replacing the GUID but leaving the brackets :

wmic product where identifyingnumber={guid} call uninstall /nointeractive

But if you want to install all products that have a similar name (like java might have 5 versions of Java 8 on a machine), you could use a command like this to remove all programs that start with "java 8"

wmic product where "name like 'Java 8%%'" call uninstall /nointeractive


Hope that helps!




Comments:
  • There is no reason to use powershell. I did write it in batch file but was curious how to do in powershell. Just for learning.. Thanks for your response . I will dig into wmic - ldhema 4 years ago
Posted by: ldhema 4 years ago
Yellow Belt
0

Top Answer

can anyone suggest good tutorial to learn powershell commands and also practice 


Comments:
  • I can recommend the book: learn powershell in a month of lunches
    Also check the following links:

    https://ss64.com/ps/

    https://powershellexplained.com/

    https://blogs.msdn.microsoft.com/koryt/2018/01/04/powershell-for-programmers-basic-syntax-cmdlets/

    (It is version 3 but has a lot of useful information )
    https://channel9.msdn.com/Series/GetStartedPowerShell3 - kaelroyal 4 years ago
 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ