|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| Question |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: |
Force "cscript"
dim strLogFile: strLogFile="e:\log.txt"
Dim objShell : Set objShell = CreateObject("Wscript.Shell")
dim intDrive : intDrive=3
Dim objFSO : Set objFSO = CreateObject("Scripting.FileSystemObject")
if objFSO.FileExists(strLogFile) then objFSO.DeleteFile strLogFile, true
while intDrive<27
strDrive=Chr(Asc("a")+intDrive-1)
If objFSO.DriveExists(strDrive) Then
wscript.echo "Drive " & strDrive & " exists, checking now."
CheckDrive strDrive
End If
intDrive=intDrive+1
wend
sub CheckDrive(ByVal strDrive)
If len(strDrive) < 2 Then strDrive = strDrive & ":"
strcmd = "cmd /C %WINDIR%\System32\defrag.exe " & strDrive & " -a -v"
WScript.Echo strcmd
set objExec=objShell.Exec(strcmd)
Do While objExec.Status = 0
WScript.Sleep 500
WScript.StdOut.Write "."
Loop
WScript.Echo ""
Dim objOutput : Set objOutput = objFSO.OpenTextFile(strLogFile,8,true)
strData = "Drive " & strDrive & vbCRLF & objExec.StdOut.ReadAll
objOutput.Write strData
objOutput.Close
end sub
Sub Force(sScriptEng)
If Lcase(Right(Wscript.FullName, 12)) = "\wscript.exe" Then
If Instr(1, Wscript.FullName, sScriptEng, 1) = 0 Then
CreateObject("Wscript.Shell").Run "cscript.exe " & Chr(34) & Wscript.ScriptFullName & Chr(34)
Wscript.Quit
End If
Else
If Instr(1, Wscript.FullName, sScriptEng, 1) = 0 Then
CreateObject("Wscript.Shell").Run "wscript.exe " & Wscript.ScriptFullName
Wscript.Quit
End If
End If
End Sub
|
Advertisement
| Hall of Fame |