Jump to content

Hawkeyez

Members
  • Posts

    376
  • Joined

Everything posted by Hawkeyez

  1. We already have mail.xxxxxx already pointing to the external IP address of the exchange server for OWA, and the external IP addresses will be following us.
  2. Sorry for being dumb... brains foggy from first day back How would I do that?
  3. Hi We are currently on Nottinghamshire County Councils 1C1N, and moving over to their new Virgin provided system. Currently our email is relayed through their email filtering solution (Mail Marshall) but this is being turned off in late September. With that we need to sort ourselves the setup of exchange. Unfortunatly I have been off sick for the last 3 months (wasnt expecting so long), and so now against the wall abit. Currently we have our to domain names MX records pointing to mailmarshall clw.notts.sch.uk and clwacademy.co.uk both have MX records as below Mx01.nottscc.gov.uk 46.18.178.35 Mx02.nottscc.gov.uk 46.18.178.36 And exchange is set to relay via relay.nottscc.gov.uk Is it a case of getting the MX records to point to the external IP address of of server, and changing the option in exchange to "Use Domain name system "MX" records to roue mail automatically"?
  4. Just one last call before the weekend (I go into hospital myself so gonna be away from Edugeek after tomorrow for a while) Thanks to those that have already sponsored.
  5. Cancelled 2 shows I actually liked, Forever and Stalker Glad Blacklist has been renewed
  6. That has surprised me!
  7. Hi All My wife is doing her fourth race for life in June. As a survivor of Cervical Cancer it’s close to our hearts. If any of you feel you could donate to Cancer Research, it would be gratefully appreciated. https://www.justgiving.com/emmaparr79/
  8. Heard the phrase "On your 6" say in a dogfight?
  9. Im a saddo (and seems my 9yr old stepdaughter is to now - refers to it as our "old people program") and watch Casualty... so spill :-)
  10. Can't see it making Season 2. I thought CSI:Miami got bad towards the end, but Cyber is just hilarious.
  11. RM's reponse once we knew it was a CC4 issue. On further investigation on issues reported for Dropbox, I could understand the following findings were made. Sorry to inform you that these application are not supported on CC4 Windows7. 1. Windows 7: The applications are not compatible with CC4 Windows 7. Because in CC4 Windows 7, the Application Data folder is moved to network drive and the Dropbox app requires "Application Data" folder to be on Local drive for Windows 7. 2. Windows 8.1: The application requires the sync location to be on the local drive (default location: C:\Users\[user name]\Dropbox) hence the sync folder cannot be accessed while logged in as a restricted user. The app will work with full functionality for Admin users on a Windows 8.1 workstation. Many thanks, Dany
  12. This is the script, now got it running, however, it wont delete users that start with a number! Any ideas. @ECHO ON :: -------------------------------------- :: :: Windows 7 User Profile Cleaning Script :: Version 3.1 :: :: Written by Mike Stone :: [email protected] :: https://mstoneblog.wordpress.com :: :: -------------------------------------- :: :: Welcome! This script is designed to automate the process of flushing :: user profiles within Windows 7, while at the same time preserving :: profiles of your choosing, including domain users. :: :: This script is written as an example of wanting all domain users wiped :: except for the one called "pctest". :: :: Portions of the script that will require manual edits will be preceded :: by instructions with these "double colon" comment marks. :: :: Please let me know how well (or not well) this works for you or any :: features you can think of that could be added. :: :: -------------------------------------- title Windows 7 User Profile Cleaning :: ---------- :: Add any users you wish to exclude from the wipe to the "userpreserve" :: line below and separate them by commas. Be careful - these are :: case-sensitive. :: ---------- :USERPRESERVE set userpreserve="Administrator,All Users,UpdatusUser,Default,Default User,Public,pctest,RM Default User,Public,systemadmin,CLW [email protected]" FOR /f "tokens=*" %%a IN ('reg query "hklm\software\microsoft\windows nt\currentversion\profilelist"^|find /i "s-1-5-21"') DO CALL :REGCHECK "%%a" GOTO VERIFY :REGCHECK set SPACECHECK= FOR /f "tokens=3,4" %%b in ('reg query %1 /v ProfileImagePath') DO SET USERREGPATH=%%b %%c FOR /f "tokens=2" %%d in ('echo %USERREGPATH%') DO SET SPACECHECK=%%d IF ["%SPACECHECK%"]==[""] GOTO REGCHECK2 GOTO USERCHECK :REGCHECK2 FOR /f "tokens=3" %%g in ('reg query %1 /v ProfileImagePath') DO SET USERREGPATH=%%g GOTO USERCHECK :USERCHECK FOR /f "tokens=3 delims=" %%e in ('echo %USERREGPATH%') DO SET USERREG=%%e FOR /f "tokens=1 delims=." %%f IN ('echo %USERREG%') DO SET USERREGPARSE=%%f ECHO %USERPRESERVE%|find /I "%USERREGPARSE%" > NUL IF ERRORLEVEL=1 GOTO CLEAN IF ERRORLEVEL=0 GOTO SKIP :SKIP ECHO Skipping user clean for %USERREG% GOTO :EOF :CLEAN ECHO Cleaning user profile for %USERREG% rmdir "C:\Users\%USERREG%" /s /q > NUL ECHO Cleaning user registry for %USERREG% reg delete %1 /f IF EXIST "C:\Users\%USERREG%" GOTO RETRYCLEAN1 GOTO :EOF :RETRYCLEAN1 ECHO Retrying clean of user profile %USERREG% rmdir "C:\Users\%USERREG%" /s /q > NUL IF EXIST "C:\Users\%USERREG%" GOTO RETRYCLEAN2 GOTO :EOF :RETRYCLEAN2 ECHO Retrying clean of user profile %USERREG% rmdir "C:\Users\%USERREG%" /s /q > NUL GOTO :EOF :VERIFY FOR /f "tokens=*" %%g IN ('reg query "hklm\software\microsoft\windows nt\currentversion\profilelist"^|find /i "s-1-5-21"') DO CALL :REGCHECKV "%%g" GOTO REPORT :REGCHECKV set SPACECHECKV= FOR /f "tokens=3,4" %%h in ('reg query %1 /v ProfileImagePath') DO SET USERREGPATHV=%%h %%i FOR /f "tokens=2" %%j in ('echo %USERREGPATHV%') DO SET SPACECHECKV=%%j IF ["%SPACECHECKV%"]==[""] GOTO REGCHECKV2 GOTO USERCHECKV :REGCHECKV2 FOR /f "tokens=3" %%k in ('reg query %1 /v ProfileImagePath') DO SET USERREGPATHV=%%k GOTO USERCHECKV :USERCHECKV FOR /f "tokens=3 delims=" %%l in ('echo %USERREGPATHV%') DO SET USERREGV=%%l FOR /f "tokens=1 delims=." %%m IN ('echo %USERREGV%') DO SET USERREGPARSEV=%%m ECHO %USERPRESERVE%|find /I "%USERREGPARSEV%" > NUL IF ERRORLEVEL=1 GOTO VERIFYERROR IF ERRORLEVEL=0 GOTO :EOF :VERIFYERROR SET USERERROR=YES GOTO :EOF :REPORT IF [%USERERROR%]==[YES] ( set RESULT=FAILURE ) ELSE ( set RESULT=SUCCESS ) :: ---------- :: This is fairly optional - it's just something I added so :: that I could keep an eye on the labs remotely to make :: sure there weren't masses of critical errors with the :: script failing. :: :: If you don't want it, just comment-out or remove the :: "net use" line. :: :: If you do want it, then make the necessary modifications :: to the net use to map an appropriate sharepoint. :: ---------- :: net use t: \\server\share IF EXIST "t:\labreport.txt" ( GOTO REPORTGEN ) ELSE ( GOTO EXIT ) :REPORTGEN FOR /F "tokens=*" %%n in ('echo %date:~10,4%-%date:~4,2%-%date:~7,2% %time:~0,2%-%time:~3,2%-%time:~6,2%') DO SET TDATETIME=%%n FOR /F "tokens=14" %%o in ('ipconfig^|find "IPv4 Address"') DO SET IPNUMBER=%%o ECHO. %RESULT% %COMPUTERNAME% %IPNUMBER% %TDATETIME%>>"t:\labreport.txt" net use t: /delete GOTO EXIT :EXIT exit :EOF
  13. How abouts doing a boot script (pre-login)? Got a script to clean local profiles I want to run on student laptops.
  14. We seem to have this alot. Reset profiles (CC4) resolves most, but a real PITA to manage. On CC3 on pupil laptops we had scripts to delete profiles on startup excluding ones that needed to stay. Wondering if could do a similar thing on CC4.
  15. Hehe just tried this :-)
  16. Me: Main is an iiyama P1905s and 2nd display a iiyama E2482HS
  17. You got any docs you worked from that I could read?
  18. How was the process to migrate over to Ubuntu? We have been Windows based for years, runs okay most of the time, but occasionally it just cant cope. I have considered moving over to Linux, but with site atm being over 110GB, not sure how easy it would be.
  19. This has been used by an IT teacher for years, its brilliant. We have all been there, just wanting to eat our lunch and constantly interrupted.
  20. Same here, first day is Good Friday, but closed the next 2 weeks also.
  21. Be interested in this, as had them come in, and are under consideration.
  22. Watched "Sabotage" last night. Brutal at times.
  23. Yep ignore BMI. As mentioned earlier (I think) in tread, I have achalasia, and having dropped from 16.5st (5ft7) to then about 12st, not being able to eat/drink much if anything, my then GP, having looked at charts said I'm still a fatty (not her exact words), and so wouldn't help with any supplements. I'm now at about 10.5st, and effectively skin and bone in places, lost lots of muscle, but according to BMI, Im just about right. I however don't look or feel right. As @witch has said, BMI don't take into account the build of body etc.
  24. Its our "If we was able to move to" dream. However, don't see much chance of a job coming up. When was younger, I was fortunate to got 2-3 times a year. Stopping in one of my favorite places (Carbis Bay), last couple holidays have been in Perranporth.
  25. I'm the opposite, this May going away for first proper Family Holiday with my Wife and Step-daughter. Had a couple of weekends in Cromer staying at friends since wedding in October, but this will be the first for just us 3. Cornwall here we come :-)
×
×
  • Create New...