CYB_300_Milestone_3-3

.docx

School

Southern New Hampshire University *

*We aren’t endorsed by this school

Course

300

Subject

Computer Science

Date

Dec 6, 2023

Type

docx

Pages

1

Uploaded by JusticeJellyfishPerson10226

Report
CYB 300 Milestone One Worksheet CYB 300 2023 November 12 Required Script Element PowerShell Script Statement Screenshot Change time zone to Tonga Standard Time Set-TimeZone -Name ‘Tango Standard Time’ Set date/time to 6:00 a.m. on February 29, 2020 Set-date -Date ‘2020/02/29 06:00’ Create a new local user with the following parameters: FullName: First_Name Last_Name Name: First_initial+Last_name Password: Password123 Password Never Expires: true $Password = Read-Host -AsSecureString New-LocalUser ‘Fernando1’ -Password $Password -PasswordNeverExpires -FullName ‘Fernando Bonilla(David)’ Display a list of services beginning with “W” and send them to a text file named “W_Services.txt” Get-Service w* >W_Services.txt Export PowerShell history to text file named “CYB_300_History_Firstname_La stname.txt” Notepad ./CYB_300_History_Fernando_Bonill a.txt
Discover more documents: Sign up today!
Unlock a world of knowledge! Explore tailored content for a richer learning experience. Here's what you'll get:
  • Access to all documents
  • Unlimited textbook solutions
  • 24/7 expert homework help