Help for this page

Select Code to Download


  1. or download this
    "C:\\Program\ Files\\HP\ Remote\ System\ Management\\hprsmcli" -s 143.
    +207.48.60 -u user -p pass
    
  2. or download this
    system( join ' ',     
        '"C:\\Program\ Files\\HP\ Remote\ System\ Management\\hprsmcli"', 
    ...
        '-u', 'user', 
        '-p', 'pass'
    );
    
  3. or download this
    system( join ' ',     
        '"C:\\Program\ Files\\HP\ Remote\ System\ Management\\hprsmcli"', 
    ...
        '-u', $user, 
        '-p', $pass
    );
    
  4. or download this
    system( join ' ',     
        '"C:\\Program\ Files\\HP\ Remote\ System\ Management\\hprsmcli"', 
    ...
        '-p', $pass,
        '--log', qq["$logfile"]
    );
    
  5. or download this
    qq[ "c:\\perl 64\bin\perl.exe" -nle"/this/ and print" "..\some file wi
    +th spaces.txt" ];