1 Run Everywhere 9th April 2010, 10:29 pm
kyawzwathant
MITR Reader
အင္တာနက္ဆိုင္ေတြမွာ မ်ားေသာအားျဖင့္ run dialogue box ကို သံုးမရေအာင္ ပိတ္ထားတယ္ သံုးလို႔ရေအာင္ဒါေလးေဆာင္ထားေပါ့။
ေအာက္က vbscript ကို notepad မွာကူးပီး RunEveryWhere.vbs နဲ႔သိမ္းပါ ပီးရင္ သံုးခ်င္တဲ့ေနရာယူပီး သံုးလို႔ရပီ။
[You must be registered and logged in to see this link.]
ေအာက္က vbscript ကို notepad မွာကူးပီး RunEveryWhere.vbs နဲ႔သိမ္းပါ ပီးရင္ သံုးခ်င္တဲ့ေနရာယူပီး သံုးလို႔ရပီ။
- Code:
Dim cmd
cmd = InputBox("Type Your Command...eg.>>> cleanmgr","Run Command Prompt","cleanmgr")
Dim ws
Set ws = WScript.CreateObject("WScript.Shell")
On Error Resume Next
ws.Run(cmd)
ws.Quit
[You must be registered and logged in to see this link.]