Friday, September 11, 2009

System Restore + Taskmanager One click fix

heres a little .reg file u can make

soo u dont hafta go into regedit in case it undoes itself [investigating y it does that..]

open notepad

--windows+r

---notepad

paste this into it starting from windows registry till the end.

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows NT\SystemRestore]
"DisableSR"=dword:00000000

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]
"DisableTaskMgr"=dword:00000000

okay now save as "name".reg and for file type select any type. now next time u need ure system restore and taskmanager just double clikc this file 

System Restore

They took it out.. i put it in ;p

windows key+ r orrr start menu run

-regedit

--HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SystemRestore.

---change disablesr from 1 to 0

Wednesday, September 9, 2009

starting computer script

wanna know how ure laptop can tell if ure a student or not? here look at htis
REM @ECHO OFF
REM Added by John Jennings 9:19 AM 5/12/2009 - To get update.cmd and configure.cmd to update correctly.
if /I "%1"=="1" goto StartConfigure
REM -------------------------------------------------------------------------------------
REM This wil update all of the local scripts and files
REM Keep this line at the BEGINNING of this file
rem start "Updating Local Files. Please wait ..........." /Max /WAIT cmd.exe /c "C:\windows\system32\IBMscripts\update.cmd"
robocopy "O:\Personal Laptop Config\C-Drive\windows\system32\IBMscripts" "C:\windows\system32\IBMscripts" update.cmd /w:1 /r:1 /e /NJH /NJS /NDL /XO
start "Updating Local Files. Please wait....." /MIN "C:\windows\system32\IBMscripts\update.cmd"
goto DONE
REM DO NOT CHANGE ANYTHING ABOVE THIS LINE!

:StartConfigure
TITLE Configuring Laptop ....

CALL :CHKSTUDENT

REM Added by Viktor 10:34 AM 5/7/2009 to make sure the desktop directory exists
if not exist "D:\Desktools" MD "D:\Desktools"
if not exist "H:\profile" MD "h:\profile"
if not exist "H:\profile\desktop" MD "h:\profile\desktop"
if not exist "H:\Favorites" MD "H:\Favorites"
if not exist "H:\Network File Utilities" MD "H:\Network File Utilities"

CALL :CLEANUP

CALL :NETDETECT

CALL :REFRESH

CALL :LanSchool

goto DONE
REM End of Control section
REM #####################################################################################


REM #####################################################################################
:CHKSTUDENT
IF EXIST "C:\RIGHTUPDATE.TXT" goto END
REM This section checks to see if this user is a student
ifmember "%USERDOMAIN%\%SchoolCode%students"
echo your errorlevel is %ERRORLEVEL%
Set strFlag=%ERRORLEVEL%
IF "%strFlag%"=="1" CSCRIPT //nologo "C:\WINDOWS\system32\IBMscripts\wallpaper.vbs" "C:\Program Files\IBMSchool\studentDT.bmp"
If "%strFlag%"=="1" GOTO CHNGRIGHTS
ifmember "%USERDOMAIN%\%SchoolCode%teachers"
echo your errorlevel is %ERRORLEVEL%
Set strFlag=%ERRORLEVEL%
IF "%strFlag%"=="1" CSCRIPT //nologo "C:\WINDOWS\system32\IBMscripts\wallpaper.vbs" "C:\Program Files\IBMSchool\teacherDT.bmp"
If "%strFlag%"=="1" GOTO CHNGRIGHTS

goto END
REM #####################################################################################




REM #####################################################################################
:CHNGRIGHTS
REM Adds current user to administrators group
net localgroup administrators %USERNAME% /ADD

REM removes the students from the local administrators group
net localgroup administrators Students /DELETE

REM removes the students from the local administrators group
net localgroup administrators Teachers /DELETE

ECHO COMPLETE > C:\RIGHTUPDATE.TXT
goto END
REM #####################################################################################



REM #####################################################################################
:NETDETECT
REM 10:53 AM 5/7/2009 - Added by Viktor to detect if you are connected to the network
REM --------------------------------------------------------------------
REM Testing if L: is being mapped to the network drive
net use L: > C:\Drivetest.txt
FIND /I "Local name" C:\Drivetest.txt
ECHO Errorlevel is "%ERRORLEVEL%"
IF "%ERRORLEVEL%" == "0" goto SCHOOLNET
goto NOSCHLNET
REM #####################################################################################



REM #####################################################################################
:CLEANUP
REM --------------------------------------------------------------------
REM Clean the current environment
CALL "C:\WINDOWS\system32\IBMscripts\CLEANENV.cmd"
cls
REM --------------------------------------------------------------------
goto END
REM #####################################################################################




REM #####################################################################################
:REFRESH
REM -------------------------------------------------------------------------------------
REM Make the changes effective immediately
REM %SystemRoot%\System32\RUNDLL32.EXE user32.dll, UpdatePerUserSystemParameters
cscript //nologo "C:\WINDOWS\system32\IBMscripts\desktop.vbs"

goto END
REM #####################################################################################



REM #####################################################################################
:SCHOOLNET
TITLE Configuring for School Network ....

REM added by John Jennings 11:15 AM 12/05/2009 - to remove the flag file so network will not be detected if offline.
del c:\drivetest.txt /Q

ECHO ON
REM Added by Viktor 11:15 AM 5/7/2009 - Map S: drive to network Home directory
Net use S: "%HOMESHARE%\%USERNAME%"


REM Create common desktop shortcuts
shortcut /F:"H:\Profile\Desktop\SchoolConnect Utilities.lnk" /T:"S:\profile\desktop" /A:C /I:"C:\WINDOWS\system32\SHELL32.dll,34" /D:"SchoolConnect Desktop for %USERNAME%" /R:3 /W:"S:\profile\desktop"shortcut /F:"H:\Profile\Desktop\SchoolConnect Utilities.lnk" /T:"S:\profile\desktop" /A:C /I:"C:\WINDOWS\system32\SHELL32.dll,34" /D:"SchoolConnect Desktop for %USERNAME%" /R:3 /W:"S:\profile\desktop"
cacls "H:\Profile\Desktop\SchoolConnect Utilities.lnk" /E /C /G everyone:F
shortcut /F:"H:\Profile\Desktop\Network File Utilities.lnk" /T:"H:\Network File Utilities" /A:C /I:"c:\WINDOWS\system32\SHELL32.dll,66" /D:"Utilities for Managing Laptop User's Data"
cacls "H:\Profile\Desktop\Network File Utilities.lnk" /E /C /G everyone:F


REM -------------------------------------------------------------------------------------
IF NOT EXIST "C:\WINDOWS\system32\IBMscripts\logs" MD "C:\WINDOWS\system32\IBMscripts\logs"
ECHO %USERNAME% connected successfully on %DATE% at %TIME% >> "C:\WINDOWS\system32\IBMscripts\logs\Connections.txt"
REM -------------------------------------------------------------------------------------


goto END
REM #####################################################################################





REM #####################################################################################
:NOSCHLNET


REM Create desktop shortcuts for home use
shortcut /F:"H:\Profile\Desktop\Desk Tools.lnk" /T:"D:\Desktools" /A:C /I:"C:\Program Files\IBMSchool\Desktls.ico" /D:"Offline Desktools Icon" /R:3 /W:"H:\profile\desktop"
cacls "H:\Profile\Desktop\Desk Tools.lnk" /E /C /G everyone:F


goto END
REM #####################################################################################

REM #####################################################################################
:LanSchool
ifmember "%USERDOMAIN%\%SchoolCode%students"
IF "%ERRORLEVEL%"=="0" Start "SwitchToTeacher" /Min "C:\program files\lanschool\switchtoteacher.exe"
goto END
REM #####################################################################################


:Done
EXIT


:END
TITLE Complete

ure wireless not working? heres your fix

kay sooo

open up ure view wireless thingers

double click the stau_wlan 

wait for it to finish

u will nto be connnected do not panick -.-

click the advanced settings button

click wireless networks tab

click the stau_wlan in the selectionst hing

click properties

click the dropdown box and pick the one that has the Peak? in it or sumfign liek that [starts with p id ont remem]

and press okay u shud b able to connect now

Tuesday, September 8, 2009

Taking Admin accoutn

kay soo heres how to take the admin account

1. control panel

2. user accounts

3. advanced tab

4. advanced button

5. users folder

6. righclick administrator

7. set password

8. ure done

Login Screen Change -Fixed-

kay soo sorry bout the last post about hte login screen

i figured out that it was "denied access or w/e bullshit htey feed u"

this is wahtchu do

right click the ibmschool folder go to security and click ure own user and allow full control and now u can do w/e u want 



kay realized this is messy
1. My Computer
2. Program Files
3. Rightclick IBMSchool
4. Uncheck Read Only
5. Click security tab
6. Enable full control on ure user [do all of them if u dont know whcih ones u are]
7. Apply
8. Mod if it fails post here and ill figure it out

Thursday, August 27, 2009

Lanschooling hte lanschool lulz

removed due to abuse

Board Policy 421

kay soo if u havent noticed when u login

the top says

I understand and agree to abide by Board Policy #421 Information Technology - Acceptable Employee Use

to those who care

this is that policy

http://www.ycdsb.ca/trustees/documents/policies/IT_Acceptable_EmployeeUse.pdf

New Admin account

well if u tried adding a new account to use at home like normal ppl wud

u will figure out

its fucking wierd to make an accoutn  cuz they fucked sumthign up the ass in the image -.- how great

ohyeah if u make an accoutn ug et to do fun stuff with lan school... like teacher edition.. seen in my erlier post ;p

to do this

control panel> user accounts>  Advanced tab > advanced button. [lol]> Right click the users folder

Click new make an account do w/e u want.> now to make it admin after u create hte user> click the groups folder> administrators> add [ure username here without hte square brackets]> click done. and grats u have an admin account. when u login login through whatever ure computer is not "CLASSROOM" cuz thats just retarted ;D

Powers of Lanschool



for those who want to be normal students who dont want to disable or uninstall lanschool 

this is waht teachers can do

;p



Windows games like minesweeper and junk

kay so viola notified me that sum ppl were qqing that they lost hteir precious minesweeper or solitaire (LOLL!!)

anywayss

to fix this

control panel > add or remove programs> ADD/remove windows components> details... box> games! check that and hten click next and ure all good.

Taskmanager

kay soo admin took our taskmanager.. 

sooooooo were taking it back ;D

Click Start -> Run. Type in regedit
HKEY_CURRENT_USER -> Software \ Microsoft \ Windows \ CurrentVersion \ Policies \ System.
in there you should see Disable TaskMgr.

Right click it and edit 1 = no taskmanager allowed  0= u can use taskmanagaer oh the joy

Login screen

do u think its ugly as fuck?

if u do read 

to change it is simple 

go to

C:\Program Files\IBMSchool

and change backsplash.bmp backup that file if u want.

otherise go wild and change it all u want

icon size.

lotsa ppl bugging me bout this soo here we go

first go to ure display properties

Right click background > properties

kay no click settings.

fix ure resolution

click apply. 

if icons are still a bitch

click appearance

and then click advanced 

i believe good numbers for icons are 32 (according to viola x3)

for spacing thats entirely up to u (personally i use 36 ermz well since icon size is 32 according to viola use that i guess =\ LOL as well.. but heh thats just me). i dont even remember what a normally use xD

---------------------------------------------------------------------------------

post in comments if u want anythign else

lanschoolage

well guys laptops back today noticed a couple things.. annoying privelages gay spying..

how fun

lanschool..

heres their site if u wanna see it

http://www.lanschool.com/lanschool

stfu im to lazy to hyperlink that soo copy and paste.

hmm im not so sure if we shud disable this but if u want here are instructions

this is the new protection shit that lets teachers spy on ure laptop screen and decide to kick u off ure computer if they choose to. if u choose to let this stay on several thigns to take note of.

They have a visual of ure moniter at ALLL times. so alt tabbing =  failsauce

they can take over ure computer. as in if u were typing something or using rogers texting or w/e the fuck u guys do they can freeze/ lock / use ure computer and u wont b able to access it.

therefore its easy for htem to punish lol

to get rid of this shit. its easy

disabling it is kinda easy.:

note this lags ure computer liek a bitch but w/e as long as its rumnning say goodbye to lanschool lol

open notepad

copy and paste this wihtout the lines plz

--------------------------

:a

Taskkill /f /IM student.exe

goto :a

------------------------

to take care of it for good look below

2 ways :

first u uninstall it. easy. but since you miiiight get introuble if u get rid of it.. not so smart

to uninstall

just control panel add or remove. and look for it

to block it

open ure control panel and double click windows firewall

go to general and turn it on. yeah i know its a pain

now go to exceptions and uncheck lanschool teacher and student

this gets rid of ure problems..

ohyeah ;D i found a way to to use lanschool to  mess with ppl too.. xD not telling that though figure it out ureself

quit obvious if u ask me

another method. simply find a lanschool teacher copy and install it. 

-----------------------------------------------------------------------------------------------------------

thats it for now. post in comments if u want me to check something out. kthxbai