priyaviswam has asked for the wisdom of the Perl Monks concerning the following question:
Hi, Here Im trying to access the Grapphics properties->display settings to rotate the screen. For this im using the GfxUI.exe in my 64 bit machine. But unfortunately this is not lauching through perl Proc::Background. Here the code I tried which is working fine on the 32 bit machine. But it is not working on 64 bit machine. Please note: For 32 bit machine the exe used is different from 64 bit.
Please let me know your suggestionuse strict; use warnings; use Proc::Background; my $Loc = "C:\\Windows\\Sysnative\\igfxcfg.exe"; my $Status = Proc::Background->new($Loc); print "Status = $Status\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: unable to launch GfxUI.exe using Proc::Background
by Corion (Patriarch) on May 15, 2012 at 11:20 UTC | |
|
Re: unable to launch GfxUI.exe using Proc::Background
by Anonymous Monk on May 15, 2012 at 10:29 UTC | |
| |
|
Re: unable to launch GfxUI.exe using Proc::Background
by Khen1950fx (Canon) on May 15, 2012 at 10:58 UTC | |
by priyaviswam (Sexton) on May 15, 2012 at 11:11 UTC |