PowerCLI Get VMs those fit some conditions











up vote
0
down vote

favorite












I'm trying to get our some Linux distros from vCenter by using PowerCLI. But I don't want to get Appliance VMs. So I have 2 different successful PowerCLI scripts those can find these machines. I want merge these scripts but I'm new on PowerCLI and it's syntax.



I'm sharing these scripts at below:





Non-Appliance List:



Get-VM | `
Get-Annotation | `
Where-Object {$_.name -eq "Appliance"} | `
Where-Object {$_.value -eq 'No'} | `
Export-Csv C:UsersmeDocumentsnon-appliance-list.csv -NoTypeInformation -UseCulture




Linux List:



Get-View -Property @("Name", "Config.GuestFullName","Guest.GuestFullName") | `
Select -Property Name, @{N="COS";E={$_.Config.GuestFullName}}, @{N="ROS";E={$_.Guest.GuestFullName}} | `
Where-Object ({$_.ROS -like 'Centos*' -or $_.ROS -like 'Suse*' -or $_.ROS -like 'Ubuntu*'}) | `
Select AnnotatedEntity,Name,Value | `
Export-Csv C:UsersmeDocumentslinux-list.csv -NoTypeInformation -UseCulture




Script I imagined but doesn't worked:



Get-VM | `
Get-Annotation | `
Where-Object {$_.name -eq "Appliance"} | `
Where-Object {$_.value -eq 'No'} | `
Get-View -Property @("Name", "Config.GuestFullName","Guest.GuestFullName") | `
Select -Property Name, @{N="COS";E={$_.Config.GuestFullName}}, @{N="ROS";E={$_.Guest.GuestFullName}} | `
Where-Object ({$_.ROS -like 'Centos*' -or $_.ROS -like 'Suse*' -or $_.ROS -like 'Ubuntu*'}) | `
Select AnnotatedEntity,Name,Value | `
Export-Csv C:UsersmeDocumentslinux--list.csv -NoTypeInformation -UseCulture


Maybe It has been a XY-Question. If you have a better way to get Linux VMs those are not appliance, you can say me this method.










share|improve this question




























    up vote
    0
    down vote

    favorite












    I'm trying to get our some Linux distros from vCenter by using PowerCLI. But I don't want to get Appliance VMs. So I have 2 different successful PowerCLI scripts those can find these machines. I want merge these scripts but I'm new on PowerCLI and it's syntax.



    I'm sharing these scripts at below:





    Non-Appliance List:



    Get-VM | `
    Get-Annotation | `
    Where-Object {$_.name -eq "Appliance"} | `
    Where-Object {$_.value -eq 'No'} | `
    Export-Csv C:UsersmeDocumentsnon-appliance-list.csv -NoTypeInformation -UseCulture




    Linux List:



    Get-View -Property @("Name", "Config.GuestFullName","Guest.GuestFullName") | `
    Select -Property Name, @{N="COS";E={$_.Config.GuestFullName}}, @{N="ROS";E={$_.Guest.GuestFullName}} | `
    Where-Object ({$_.ROS -like 'Centos*' -or $_.ROS -like 'Suse*' -or $_.ROS -like 'Ubuntu*'}) | `
    Select AnnotatedEntity,Name,Value | `
    Export-Csv C:UsersmeDocumentslinux-list.csv -NoTypeInformation -UseCulture




    Script I imagined but doesn't worked:



    Get-VM | `
    Get-Annotation | `
    Where-Object {$_.name -eq "Appliance"} | `
    Where-Object {$_.value -eq 'No'} | `
    Get-View -Property @("Name", "Config.GuestFullName","Guest.GuestFullName") | `
    Select -Property Name, @{N="COS";E={$_.Config.GuestFullName}}, @{N="ROS";E={$_.Guest.GuestFullName}} | `
    Where-Object ({$_.ROS -like 'Centos*' -or $_.ROS -like 'Suse*' -or $_.ROS -like 'Ubuntu*'}) | `
    Select AnnotatedEntity,Name,Value | `
    Export-Csv C:UsersmeDocumentslinux--list.csv -NoTypeInformation -UseCulture


    Maybe It has been a XY-Question. If you have a better way to get Linux VMs those are not appliance, you can say me this method.










    share|improve this question


























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I'm trying to get our some Linux distros from vCenter by using PowerCLI. But I don't want to get Appliance VMs. So I have 2 different successful PowerCLI scripts those can find these machines. I want merge these scripts but I'm new on PowerCLI and it's syntax.



      I'm sharing these scripts at below:





      Non-Appliance List:



      Get-VM | `
      Get-Annotation | `
      Where-Object {$_.name -eq "Appliance"} | `
      Where-Object {$_.value -eq 'No'} | `
      Export-Csv C:UsersmeDocumentsnon-appliance-list.csv -NoTypeInformation -UseCulture




      Linux List:



      Get-View -Property @("Name", "Config.GuestFullName","Guest.GuestFullName") | `
      Select -Property Name, @{N="COS";E={$_.Config.GuestFullName}}, @{N="ROS";E={$_.Guest.GuestFullName}} | `
      Where-Object ({$_.ROS -like 'Centos*' -or $_.ROS -like 'Suse*' -or $_.ROS -like 'Ubuntu*'}) | `
      Select AnnotatedEntity,Name,Value | `
      Export-Csv C:UsersmeDocumentslinux-list.csv -NoTypeInformation -UseCulture




      Script I imagined but doesn't worked:



      Get-VM | `
      Get-Annotation | `
      Where-Object {$_.name -eq "Appliance"} | `
      Where-Object {$_.value -eq 'No'} | `
      Get-View -Property @("Name", "Config.GuestFullName","Guest.GuestFullName") | `
      Select -Property Name, @{N="COS";E={$_.Config.GuestFullName}}, @{N="ROS";E={$_.Guest.GuestFullName}} | `
      Where-Object ({$_.ROS -like 'Centos*' -or $_.ROS -like 'Suse*' -or $_.ROS -like 'Ubuntu*'}) | `
      Select AnnotatedEntity,Name,Value | `
      Export-Csv C:UsersmeDocumentslinux--list.csv -NoTypeInformation -UseCulture


      Maybe It has been a XY-Question. If you have a better way to get Linux VMs those are not appliance, you can say me this method.










      share|improve this question















      I'm trying to get our some Linux distros from vCenter by using PowerCLI. But I don't want to get Appliance VMs. So I have 2 different successful PowerCLI scripts those can find these machines. I want merge these scripts but I'm new on PowerCLI and it's syntax.



      I'm sharing these scripts at below:





      Non-Appliance List:



      Get-VM | `
      Get-Annotation | `
      Where-Object {$_.name -eq "Appliance"} | `
      Where-Object {$_.value -eq 'No'} | `
      Export-Csv C:UsersmeDocumentsnon-appliance-list.csv -NoTypeInformation -UseCulture




      Linux List:



      Get-View -Property @("Name", "Config.GuestFullName","Guest.GuestFullName") | `
      Select -Property Name, @{N="COS";E={$_.Config.GuestFullName}}, @{N="ROS";E={$_.Guest.GuestFullName}} | `
      Where-Object ({$_.ROS -like 'Centos*' -or $_.ROS -like 'Suse*' -or $_.ROS -like 'Ubuntu*'}) | `
      Select AnnotatedEntity,Name,Value | `
      Export-Csv C:UsersmeDocumentslinux-list.csv -NoTypeInformation -UseCulture




      Script I imagined but doesn't worked:



      Get-VM | `
      Get-Annotation | `
      Where-Object {$_.name -eq "Appliance"} | `
      Where-Object {$_.value -eq 'No'} | `
      Get-View -Property @("Name", "Config.GuestFullName","Guest.GuestFullName") | `
      Select -Property Name, @{N="COS";E={$_.Config.GuestFullName}}, @{N="ROS";E={$_.Guest.GuestFullName}} | `
      Where-Object ({$_.ROS -like 'Centos*' -or $_.ROS -like 'Suse*' -or $_.ROS -like 'Ubuntu*'}) | `
      Select AnnotatedEntity,Name,Value | `
      Export-Csv C:UsersmeDocumentslinux--list.csv -NoTypeInformation -UseCulture


      Maybe It has been a XY-Question. If you have a better way to get Linux VMs those are not appliance, you can say me this method.







      powershell script powercli






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 16 at 7:24

























      asked Nov 16 at 6:18









      Gefolge

      344116




      344116



























          active

          oldest

          votes











          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "3"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














           

          draft saved


          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1375893%2fpowercli-get-vms-those-fit-some-conditions%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















           

          draft saved


          draft discarded



















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1375893%2fpowercli-get-vms-those-fit-some-conditions%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Plaza Victoria

          In PowerPoint, is there a keyboard shortcut for bulleted / numbered list?

          How to put 3 figures in Latex with 2 figures side by side and 1 below these side by side images but in...