Thursday, July 13, 2023

Hall IT Hot Links

Welcome to Hall IT Hotbar

LaunchPad - Start Here

https://launchpad.butlertech.org/app/applications

Schoology - LMS

 https://butlertech.schoology.com/home

Udemy

https://butlertech.udemy.com

Butler Tech Main Site

https://www.butlertech.org/ 

IT Content

Information Technology is a challenging and competitive field based on IT certifications 

Company intern hires based on certification vendors

CompTIA (ProSource, P&G)

https://www.comptia.org/content/it-careers-path-roadmap

Microsoft (Kizan, P&G)

https://learn.microsoft.com/en-us/certifications/

IT Careers

Indeed

https://www.indeed.com/jobs?q=comptia&l=cincinnati

Dice

https://www.dice.com/jobs?q=comptia&location=Cincinnati,%20OH,%20USA

Monster

https://www.monster.com/jobs/search?q=Systems+Administrator&where=Cincinnati%252C+OH

IT Companies

Kizan

https://www.kizan.com/careers

P&G

https://www.interalliance.org/programs/internships/

ProSource

https://www.totalprosource.com/careers

IT Degrees

University of Cincinnati

UC IT

School of Information Technology | University of Cincinnati (uc.edu)

UC Engineering

B.S. in Cybersecurity Engineering Degree - Electrical & Computer Engineering Majors & Programs | University of Cincinnati (uc.edu)

 UC MIS

Information Systems Major | University of Cincinnati (uc.edu)

Master's in Information Systems Degree | University of Cincinnati (uc.edu)

Miami University

Work+ | Regionals - Miami University (miamioh.edu)

Work+

 

PowerShell 3.0

Loaded up Windows 8 and Windows 8 Server and looking at the improvements to powershell.
Get started by typing in $host.version and you will notice that you are now on major 3.  hehe

First thing that I have noticed is that help has -online switch.  Went back and wow it is on 2.0 as well.  Funny how I missed that.

Get-Help [command] -online where [command] is the command you need help on

Nice Touch

When you type get-command it now tells you what module the command is coming from

New Features

Profiles
http://msdn.microsoft.com/en-us/library/windows/desktop/bb613488(v=vs.85).aspx

ISE
import-module servermanager
add-windowsfeature powershell-ise
powershell_ISE

(HINT) Get-WindowsFeature will display entire list

ISE Profiles
http://blogs.technet.com/b/heyscriptingguy/archive/2011/09/13/the-scripting-wife-creates-a-powershell-ise-profile.aspx

 Test-Path $profile
New-Item $profile -ItemType file –Force
Using ISE File > Open > created file above