Advertisement
Advertisement
| 05.08.2008 at 07:45AM PDT, ID: 23386248 |
|
[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! |
||
| Microsoft |
| Apple |
| Internet |
| Gamers |
| Digital Living |
| Virus & Spyware |
| Hardware |
| Software |
| ITPro |
| Developer |
| Storage |
| OS |
| Database |
| Security |
| Programming |
| Web Development |
| Networking |
| Other |
| Community Support |
| 05.09.2008 at 03:27AM PDT, ID: 21531495 |
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: |
#NoTrayIcon $SVR_SRCPATH = @ScriptDir ;Path to Server Updates + Server Ini File; example: '\\Server\Share' Note: No following '\' $APP_DSTPATH = @ScriptDir ;Path to Local Updates + Local Ini File; example: @ProgramFiles & '\Application folder' Note: No following '\' $SVR_INIFILE = $SVR_SRCPATH & '\SVRUPDATE.INI' ;Path and name of Server Version Ini File $APP_INIFILE = $APP_DSTPATH & '\APPUPDATE.INI' ;Path and name of Local Version Ini File $RUN_ZPFILE1 = $SVR_SRCPATH & '\SVRUPDAT1.EXE /Q' ;Command 1 for expanding your Zip Files, this is just an example. $RUN_ZPFILE2 = $SVR_SRCPATH & '\SVRUPDTE2.EXE /Q' ;Command 2 for expanding your Zip Files, this is just an example. $RUN_ZPFILE2 = $SVR_SRCPATH & '\SVRUPDTE3.EXE /Q' ;Command 3 for expanding your Zip Files, this is just an example. $RUN_ZPFILE2 = $SVR_SRCPATH & '\SVRUPDTE4.EXE /Q' ;Command 4 for expanding your Zip Files, this is just an example. $SVR_INIEXST = FileExists($SVR_INIFILE) ;Checks to see if the Server Version Ini Exists or is available for verification. If Not $SVR_INIEXST Then Exit ;If the Server Version Ini isn't available i.e. the user is Offline or the Network is down, exit the script. EndIf $APP_INIEXST = FileExists($APP_INIFILE) ;Checks to see if the Local Version Ini Exists or is available for verification. If Not $APP_INIEXST Then IniWrite($APP_INIFILE, 'Version', 'Version', '') ;If the Local Version Ini isn't available i.e. the script hasn't run previously, the Ini File is created with no Version information. EndIf $SVR_VERSION = IniRead($SVR_INIFILE, 'Version', 'Version', 'Error') ;Reads the Server Version Ini File for Version information. $APP_VERSION = IniRead($APP_INIFILE, 'Version', 'Version', 'Error') ;Reads the Local Version Ini File for Version information. If $SVR_VERSION > $APP_VERSION Then ;If the Server Version is higher than the Local Version then... RunWait($RUN_ZPFILE1, $SVR_SRCPATH, @SW_HIDE) ;Run the first command (see $RUN_ZPFILE1 above) RunWait($RUN_ZPFILE2, $SVR_SRCPATH, @SW_HIDE) ;Run the second command (see $RUN_ZPFILE2 above) RunWait($RUN_ZPFILE3, $SVR_SRCPATH, @SW_HIDE) ;Run the third command (see $RUN_ZPFILE3 above) RunWait($RUN_ZPFILE4, $SVR_SRCPATH, @SW_HIDE) ;Run the forth command (see $RUN_ZPFILE4 above) IniWrite($APP_INIFILE, 'Version', 'Version', $SVR_VERSION) ;Writes the Server Version into the Local Version Ini EndIf |
| 05.09.2008 at 03:30AM PDT, ID: 21531508 |
| 05.09.2008 at 05:15AM PDT, ID: 21531968 |
| 05.09.2008 at 06:17AM PDT, ID: 21532438 |
| 05.09.2008 at 07:14AM PDT, ID: 21533014 |
| 05.09.2008 at 07:35AM PDT, ID: 21533225 |
| 05.09.2008 at 08:03AM PDT, ID: 21533560 |
| 05.09.2008 at 08:32AM PDT, ID: 21533917 |
| 05.09.2008 at 08:50AM PDT, ID: 21534088 |
| 05.09.2008 at 09:04AM PDT, ID: 21534234 |
| 05.09.2008 at 09:43AM PDT, ID: 21534576 |
| 05.09.2008 at 11:08AM PDT, ID: 21535211 |
| 05.09.2008 at 05:17PM PDT, ID: 21537301 |
| 05.12.2008 at 06:04AM PDT, ID: 21546544 |
| 05.12.2008 at 06:45AM PDT, ID: 21546904 |
| 05.13.2008 at 04:57AM PDT, ID: 21554086 |
| 05.13.2008 at 05:32AM PDT, ID: 21554332 |
| 05.13.2008 at 05:45AM PDT, ID: 21554438 |
| 05.13.2008 at 06:09AM PDT, ID: 21554639 |
| 05.13.2008 at 06:11AM PDT, ID: 21554663 |
| 05.13.2008 at 06:19AM PDT, ID: 21554736 |
| 05.13.2008 at 06:41AM PDT, ID: 21554923 |
| 05.14.2008 at 02:20AM PDT, ID: 21562293 |