-
Posts
254 -
Joined
-
Last visited
Content Type
Forums
News
20th
EduGeek EDIT Conference
Blogs
Everything posted by tommccann
-
test it, update your status and check the displayed time
-
why use VB? there's an autoit script on this forum somewhere, very easy to change to
-
Software will not run as user with locked down account
tommccann replied to Edu-IT's topic in Educational Software
try making everyone a power user, fixes so much stuff for me!! -
This is the one iv used in the past, works with everything even safari and firefox! plus can be changed to fairy lights (sorry!! i mean puff lanterns) very easily Enjoy! snowstorm.zip
-
wont let me open the zip, Invalid or corrupt it says
-
Cheers for the script it probably would work but its a script for SteadyState to allow update changes but only for sophos. Like This: ' *** ' *** ------------------------------------------------------------------------------ ' *** Filename: SCTMcAfeeVirusUpdate.vbs ' *** ------------------------------------------------------------------------------ ' *** Description: McAfee Virus Signature Update for VirusScan ' *** ------------------------------------------------------------------------------ ' *** Version: 1.1 ' *** Notes: Used by Windows Disk Protection ' *** ------------------------------------------------------------------------------ ' *** Copyright (C) Microsoft Corporation 2007, All Rights Reserved ' *** ------------------------------------------------------------------------------ ' *** ' ~~~ ' ~~~ Force variables to be declared ' ~~~ Option Explicit ' ~~~ ' ~~~ Turn on error handling ' ~~~ On Error Resume Next ' ~~~ ' ~~~ Declare global variables ' ~~~ Dim sMcAfeePath, oShell ' ~~~ Create objects Set oShell = CreateObject("WScript.Shell") ' ~~~ Set application path sMcAfeePath = oShell.RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\McAfee.com\Agent\Install Dir") ' ~~~ Download Virus Signature call oShell.Run(chr(34) & sMcAfeePath & "\mcupdate.exe" & chr(34) & " /Schedule", 0, True) ' ~~~ Wait 5 minutes WScript.Sleep (300000)
-
anyone know where i can get a Sophos update script from?? cant find one anywhere:doh: GRRR!:censored::censored:F:censored:king sophos!
-
Strange how it used to work before, id try the hammer on laptop approach! or could try deleting the prefered wireless setting for that connection
-
according to the clicker website it is 7 compatable but i couldnt find any guides, patches or fixes
-
sure can HJT Log - Sysinfo.exe Virus, Removal Next to Impossible - dslreports.com "Sysinfoexe-Virus-Removal-Next-to-Impossible" Good Luck!!!
-
Lifted this from a website 1. Please download ATF Cleaner It does not require any installation.. It is set up to clean Windows TEMP folders, as well as IE, FireFox and Opera, Temporary Internet Files and Cookies. • Double-click ATF-Cleaner.exe to run the program. First Step: • Under Main choose: Select All • Click the Empty Selected button. Next, if you use Firefox (and some Mozilla-based browsers) • Click Firefox at the top and choose: Select All • Click the Empty Selected button. Next, if you use the Opera browser • Click Opera at the top and choose: Select All • Click the Empty Selected button. :!: Click Exit on the Main menu to close the program. Reconfigure Windows XP to show hidden files: To enable the viewing of Hidden files follow these steps: • Close all programs so that you are at your desktop. • Double-click on the My Computer icon. • Select the Tools menu and click Folder Options. • After the new window appears select the View tab. • Put a checkmark in the checkbox labeled Display the contents of system folders. • Under the Hidden files and folders section select the radio button labeled Show hidden files and folders. • Remove the checkmark from the checkbox labeled Hide file extensions for known file types. • Remove the checkmark from the checkbox labeled Hide protected operating system files. • Press the Apply button and then the OK button and exit My Computer. • Now your computer is configured to show all hidden files. 2. Please download OTMoveIt3 by OldTimer: With your mouse, highlight and then do a Right-click | Copy of the entire list of file entries in the Code box below: view plaincopy to clipboardprint? 1. :Files 2. c:\recycler 3. d:\recycler 4. f:\recycler 5. g:\recycler 6. h:\recycler 7. 8. :commands 9. [EmptyTemp] 10. [start explorer] 11. • Click to Run OTMoveIt3 on your Desktop • Right click in the "Paste Instructions for Items to be Moved" left panel and choose Paste. • Click the red Moveit! button. • Close OTMoveIt3. If a file or folder cannot be moved immediately you may be asked to reboot the machine to finish the move process. If you are asked to reboot the machine choose Yes. 3. Download (to your Desktop location) DDS by sUBs If your Antivirus has "Script Blocking" features, disable any script blocker features, and then double click DDS.scr to run the tool. When done, DDS.txt will open. Click Yes at the next prompt for Optional Scan. Save both reports to your desktop. DDS.txt Attach.txt
-
Right Finally got round to finishing it, bit primative but does what i wanted it to do! Thanks for your help, o and @SimpleSi network id joins a PC to a domain. Code attached Opt("WinWaitDelay",500) Opt("WinTitleMatchMode",4) Opt("WinDetectHiddenText",1) Run("EXPLORER.EXE /e,::{20D04FE0-3AEA-1069-A2D8-08002B30309D}") WinWait("My Computer","") If Not WinActive("My Computer","") Then WinActivate("My Computer","") WinWaitActive("My Computer","") Send("{ALTDOWN}{ENTER}{ALTUP}") WinWait("System Properties","") If Not WinActive("System Properties","") Then WinActivate("System Properties","") WinWaitActive("System Properties","") send("{CTRLDOWN}{TAB}{CTRLUP}{ALTDOWN}N{ALTUP}") WinWait("Network Identification Wizard","") If Not WinActive("Network Identification Wizard","") Then WinActivate("Network Identification Wizard","") WinWaitActive("Network Identification Wizard","") ControlClick("Network Identification Wizard","Welcome to the Network Identification Wizard","&Next >") ControlClick("Network Identification Wizard","","&Next >") ControlClick("Network Identification Wizard","","&Next >") ControlClick("Network Identification Wizard","","&Next >") ControlClick("Network Identification Wizard","","&Next >") WinWaitActive("Network Identification Wizard","") Sleep(1000) Send("{TAB}") Send("Domain Name") Sleep(1000) ControlClick("Network Identification Wizard","","&Next >") Sleep(1000) Send("Admin User") Send("{TAB}") Sleep(200) Send("Password") Send("{TAB}") Sleep(200) Send("Domain name") ControlClick("Domain User Name and Password","Type the name and password of an account with permission to join the domain.","Button1") ControlClick("Network Identification Wizard","","&Close >")
-
Nope it doesnt got replaced by the side bar apparently [ame=http://en.wikipedia.org/wiki/Active_Desktop]Look Here[/ame] Just disable the GPO on the one Vista machine and set it manually, wont take long
-
active desktop doesnt work in Vista im sure it doesnt
-
This is how you do it on a dell OMCI client '*** Declare variables Dim strNameSpace Dim strComputerName Dim strClassName Dim strKeyValue Dim objInstance Dim strPropName Dim strPwd '*** Check that the right executable was used to run the script '*** and that all parameters were passed If (LCase(Right(WScript.FullName, 11)) <> "cscript.exe" ) Or _ (Wscript.Arguments.Count < 2) Then Call Usage() WScript.Quit End If '*** Initialize variables strNameSpace = "root/Dellomci" strComputerName = WScript.Arguments(0) strClassName = "Dell_Configuration" strKeyValue = "Configuration" strPropName = "Password" strPassEncryptPropName = "PasswordEncrypted" strPwd = WScript.Arguments(1) '*** Retrieve the instance of Dell_Configuration class (there should '*** only be 1 instance). Set objInstance = GetObject("WinMgmts:{impersonationLevel=impersonate}//" &_ strComputerName & "/" & strNameSpace & ":" & strClassName & "=" & _ Chr(34) & strKeyValue & Chr(34)) '*** Set the new value for the property and save the instance objInstance.Properties_.Item(strPropName).Value = strPwd objInstance.Properties_.Item(strPassEncryptPropName).Value = 0 objInstance.Put_ '*** If any errors occurred, let the user know If Err.Number <> 0 Then WScript.Echo "Setting the BIOS password failed." End If '*** Sub used to display the correct usage of the script Sub Usage() Dim strMessage strMessage = "Incorrect syntax. You should run: " & vbCRLF & _ "cscript.exe //nologo SampleBIOSPwd.vbs " & Chr(34) & _ " space " & Chr(34) WScript.Echo strMessage End Sub Hope this help, got a feeling it wont tho!
-
My favorite movie scene is from High School Musical, when that basketball player pulls out a rifle and kills everyone who sings! thats what i saw in my head anyway
-
letter or no letter you'l still get people asking why things arnt working, i got asked to install a home printer on a school laptop for a teacher and i told her i cant do it because it needs the printer to install it. Next day a printer was sitting on my desk!! cheeky these teachers!!
-
Network id is the process of joining a PC to a network, as in Right Click My Computer, Properties, Computer Name Tab, Network ID
-
anyone set up an AutoIt automated network Id?? if you have PLEASE! PLEASE! PLEASE! share!!! *please edit the code deleting your inputted network and user/password for your safety!
-
[hardware/misc related] MP3's on the school Network
tommccann replied to Millsy79's topic in Licensing Questions
Sounds illegal to me, unless there bought originally from say iTunes of ripped of a CD, educations copyrights are different and are allowed to broadcast copyrighted files i think but who's to say the mp3s are from dodgy sites, torrents etc.. -
Look here it spells it all out in a 3 part tutorial for you : Sample Application: XML Form Generator, Part 1: Generating an XML Form: ASP Alliance Looks easier than i imagined, send me a pic of the finished product if you dont mind!!
-
sysprep is very easy to use, just when your ready to create the image run it, enter the U.K setting instead of U.S, enter your XP serial, leave the PC Name blank. Then edit the output system file and change the COMPUTER NAME:"*" to COMPUTER NAME:"" easypeasy!
-
works fine on my 97 version, you got the same office version throughout?
-
yea php server is not installed on the server and cant be sadly, this is why i wondering if php was possible. its meant for a local machine and saves to the hard drive, maybe javascript?? thanks for the replies and effort!!
