Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re^3: Windows System Command

by BrowserUk (Patriarch)
on Jun 27, 2012 at 13:42 UTC ( [id://978664]=note: print w/replies, xml ) Need Help??

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" ];
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://978664]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (6)
As of 2024-04-18 21:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found