Is this possible? Print screen script.Hello, I am new to scripting, as a matter of fact if what i am trying to do is possible, than i will have a reason to learn how to script! Any and all help will be appreciated! <div>I am a refrigeration technician and i am trying to monitor an automated cook and chill system (made by armor Inox if any one is interested).</div> <div><br/></div> <div>This is in laymen term's what i will need my script to do.</div> <div>1. Initialize itself every 15 minutes.</div> <div>2. Bring the screen of the program that i want to monitor on top, this is a multiple screen program!</div> <div>3. Get a screen grab via the print screen function.</div> <div>4. Open the Paint program.</div> <div>5. Edit/paste.</div> <div>6. File/save as current date/time to a shared folder on a network drive. </div> <div>7. Close Paint.</div> <div><br/></div> <div>The ability to disable this script would be desirable also! </div> <div><br/></div> <div>I am not asking for a hand out here, if this is possible i will learn how to script!</div> <div>If i can learn how to make this work, i am pretty sure that this is some pretty powerful stuff that will come in handy down the road!</div> <div><br/></div> <div>I will be using Notepad and the computer is running XP. Thanks, Tim,</div>© 2009 Microsoft Corporation. All rights reserved.Wed, 08 Jul 2009 01:53:19 Z9b8d4d57-10f0-4ea3-9731-2ca1cab6ed4fhttp://social.technet.microsoft.com/Forums/en-US/ITCG/thread/9b8d4d57-10f0-4ea3-9731-2ca1cab6ed4f#9b8d4d57-10f0-4ea3-9731-2ca1cab6ed4fhttp://social.technet.microsoft.com/Forums/en-US/ITCG/thread/9b8d4d57-10f0-4ea3-9731-2ca1cab6ed4f#9b8d4d57-10f0-4ea3-9731-2ca1cab6ed4fTgriepehttp://social.technet.microsoft.com/Profile/en-US/?user=TgriepeIs this possible? Print screen script.Hello, I am new to scripting, as a matter of fact if what i am trying to do is possible, than i will have a reason to learn how to script! Any and all help will be appreciated! <div>I am a refrigeration technician and i am trying to monitor an automated cook and chill system (made by armor Inox if any one is interested).</div> <div><br/></div> <div>This is in laymen term's what i will need my script to do.</div> <div>1. Initialize itself every 15 minutes.</div> <div>2. Bring the screen of the program that i want to monitor on top, this is a multiple screen program!</div> <div>3. Get a screen grab via the print screen function.</div> <div>4. Open the Paint program.</div> <div>5. Edit/paste.</div> <div>6. File/save as current date/time to a shared folder on a network drive. </div> <div>7. Close Paint.</div> <div><br/></div> <div>The ability to disable this script would be desirable also! </div> <div><br/></div> <div>I am not asking for a hand out here, if this is possible i will learn how to script!</div> <div>If i can learn how to make this work, i am pretty sure that this is some pretty powerful stuff that will come in handy down the road!</div> <div><br/></div> <div>I will be using Notepad and the computer is running XP. Thanks, Tim,</div>Sat, 04 Jul 2009 03:30:35 Z2009-07-04T03:30:35Zhttp://social.technet.microsoft.com/Forums/en-US/ITCG/thread/9b8d4d57-10f0-4ea3-9731-2ca1cab6ed4f#786ce921-0d62-4b26-8430-21edd37af646http://social.technet.microsoft.com/Forums/en-US/ITCG/thread/9b8d4d57-10f0-4ea3-9731-2ca1cab6ed4f#786ce921-0d62-4b26-8430-21edd37af646AssafMhttp://social.technet.microsoft.com/Profile/en-US/?user=AssafMIs this possible? Print screen script.Hi Tim, <div><br/></div> <div>You can use WSH to complete this script.</div> <div><br/></div> <div>Use the Run Command to open the Programs (like Paint and the Monitoring Program)</div> <div><br/></div> <div> <pre lang=x-vbnet>Set WshShell = WScript.CreateObject(&quot;WScript.Shell&quot;) Return = WshShell.Run(&quot;notepad &quot; &amp; WScript.ScriptFullName, 1, TRUE) </pre> <br/></div> <div>Use the AppActive for getting focus on the Program You want</div> <div>Use the SendKeys to Paste and PrintScreen and Save in Paint</div> <div><br/></div> <div> <pre lang=x-vbnet>set WshShell = CreateObject(&quot;WScript.Shell&quot;) WshShell.Run &quot;calc&quot; WScript.Sleep 100 WshShell.AppActivate &quot;Calculator&quot; WScript.Sleep 100 WshShell.SendKeys &quot;1{+}&quot; WScript.Sleep 500 WshShell.SendKeys &quot;2&quot; WScript.Sleep 500 WshShell.SendKeys &quot;~&quot; WScript.Sleep 500 WshShell.SendKeys &quot;*3&quot; WScript.Sleep 500 WshShell.SendKeys &quot;~&quot; WScript.Sleep 2500 </pre> I think this should do it.</div> <div>Play with it a little you can find more explenations on all of it in the Web.</div> <div><br/></div> <div>Good Luck.</div><hr class="sig">Assaf Miron <a>http://Assaf.Miron.googlepages.com</a>Sat, 04 Jul 2009 07:34:18 Z2009-07-04T07:34:18Zhttp://social.technet.microsoft.com/Forums/en-US/ITCG/thread/9b8d4d57-10f0-4ea3-9731-2ca1cab6ed4f#699bb21b-1b07-4693-b8dc-d181bfe67d1ehttp://social.technet.microsoft.com/Forums/en-US/ITCG/thread/9b8d4d57-10f0-4ea3-9731-2ca1cab6ed4f#699bb21b-1b07-4693-b8dc-d181bfe67d1eAbqBillhttp://social.technet.microsoft.com/Profile/en-US/?user=AbqBillIs this possible? Print screen script.Hi Tgriepe,<br/> <br/> I recommend using a tool that's specifically designed for this purpose. I have used 'SnagIt' and it has a feature like this.<br/> <br/> Regards,<br/> <br/> BillMon, 06 Jul 2009 14:56:34 Z2009-07-06T14:56:34Zhttp://social.technet.microsoft.com/Forums/en-US/ITCG/thread/9b8d4d57-10f0-4ea3-9731-2ca1cab6ed4f#4e99e641-59c3-41e0-83fd-a076375f12bchttp://social.technet.microsoft.com/Forums/en-US/ITCG/thread/9b8d4d57-10f0-4ea3-9731-2ca1cab6ed4f#4e99e641-59c3-41e0-83fd-a076375f12bcTgriepehttp://social.technet.microsoft.com/Profile/en-US/?user=TgriepeIs this possible? Print screen script.Thank you both for the quick replies! I actually found a solution using an Excel spread sheet. I am linking the data cells in my spread sheet directly to the temperature outputs in the programmable logic controller that is controlling the Armor Inox system that we are using. <div>This is a more desirable solution because it will be in real time!</div> <div><br/></div> <div>Bill, It would take forever to get third party software approved, but thanks for the suggestion!</div> <div><br/></div> <div>Assaf, I think i am going to take a look at what you have put together as i am curious about how this works, and i would like to know more!</div> <div><br/></div> <div>Thanks, Tim,</div>Wed, 08 Jul 2009 01:53:19 Z2009-07-08T01:53:19Z