{"id":675,"date":"2019-06-20T13:40:57","date_gmt":"2019-06-20T11:40:57","guid":{"rendered":"http:\/\/thinkadvantage.ch\/?p=675"},"modified":"2019-06-20T13:40:57","modified_gmt":"2019-06-20T11:40:57","slug":"prank-your-colleagues","status":"publish","type":"post","link":"https:\/\/www.raphaeleymann.ch\/?p=675","title":{"rendered":"Prank your Colleagues"},"content":{"rendered":"\n<p>If you wanna Prank your Colleagues or even your whole Company: Add the E-mail of every Meeting Room in the Company to the $MeetingRooms Array and run this Script. This Script will create 30min Appointments in every room for a whole day. <\/p>\n\n\n\n<p>In one of my Old companies it was tradition to troll the other Coworkers when you&#8217;re leaving and I decided to fill up their 1st of April in 2020 so they will remember me when they search for an Appointment. <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ol = New-Object -ComObject Outlook.Application\n$PrankDate = \"04\/01\/2020\"\n$MeetingRooms = @(\"SZiWP17E068@company.ch\", \"SZiWP17E10.1014Plaetze@company.ch\", \"SZiWP17E10.1310Pl.Beamer@company.ch\", \"SZiWP17E7.16Plaetze@company.ch\", \"SZiWP17E7.16Plaetze@company.ch\", \"SZiWP17E7.26Plaetze@company.ch\", \"SZiWP17E710Pl.Beamer@company.ch\", \"SZiWP19214BC15Pl.Beamer@company.ch\", \"SZiWP19307D12Pl.Beamer@company.ch\", \"SZiWP19309B6Plaetze@company.ch\", \"SZiWP19309D8Plaetze@company.ch\", \"SZi_WP19_311B_5@company.ch\", \"SZiWP19311D8Plaetze@company.ch\", \"SZiWP19412D12Pl.Beamer@company.ch\", \"SZiWP21122D8Plaetze@company.ch\", \"SZiWP21123C8Plaetze@company.ch\", \"SZiWP21129C12Pl.Beamer@company.ch\", \"SZiWP21219D6Plaetze@company.ch\", \"SZiWP21220B12Pl.Beamer@company.ch\", \"SZiWP21220C6Plaetze@company.ch\", \"SZiWP21228B10Pl.Beamer@company.ch\", \"SZiWP21319D14Pl.Beamer@company.ch\", \"SZiWP21420B12Pl.Beamer@company.ch\", \"SZiWP21420D12Pl@company.ch\", \"SZiWP21429B6Plaetze@company.ch\")\n\n$Pstart = [datetime]($PrankDate + \" 08:00:00\")\n$Pend = [datetime]($PrankDate + \" 17:00:00\")\ndo {\n\t\n\t$ol = New-Object -ComObject Outlook.Application\n\t$meeting = $ol.CreateItem('olAppointmentItem')\n\t$meeting.Subject = \"company Fiesta\"\n\t$meeting.Body = \"Platzhalter f\u00fcr speziellen Event!\"\n\t$meeting.Location = \"Bern\"\n\t$meeting.ReminderSet = $false\n\t$meeting.Importance = 1\n\t$meeting.MeetingStatus = [Microsoft.Office.Interop.Outlook.OlMeetingStatus]::olMeeting\n\tforeach ($SiZi in $MeetingRooms)\n\t{\n\t\t$meeting.Recipients.Add($SiZi)\n\t}\n\t$meeting.ReminderMinutesBeforeStart = 0\n\t$meeting.Start = $Pstart\n\t$meeting.Duration = 30\n\t$meeting.Send()\n\t\n\t$Pstart = $Pstart.addMinutes(30)\n}\nuntil ($Pstart -ge $Pend)\n\nWrite-Host \"A whole Day has been trolled\"<\/code><\/pre>\n\n\n\n<p><br><\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you wanna Prank your Colleagues or even your whole Company: Add the E-mail of every Meeting Room in the Company to the $MeetingRooms Array and run this Script. This Script will create 30min Appointments in every room for a whole day. In one of my Old companies it was tradition to troll the other&hellip;<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9,30,5],"tags":[36,31,37,38,39,40],"class_list":["post-675","post","type-post","status-publish","format-standard","hentry","category-it","category-powershell","category-transfer","tag-outlook-appointment","tag-powershell","tag-prank","tag-script","tag-script-kiddy","tag-troll"],"_links":{"self":[{"href":"https:\/\/www.raphaeleymann.ch\/index.php?rest_route=\/wp\/v2\/posts\/675","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.raphaeleymann.ch\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.raphaeleymann.ch\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.raphaeleymann.ch\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.raphaeleymann.ch\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=675"}],"version-history":[{"count":0,"href":"https:\/\/www.raphaeleymann.ch\/index.php?rest_route=\/wp\/v2\/posts\/675\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.raphaeleymann.ch\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=675"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.raphaeleymann.ch\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=675"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.raphaeleymann.ch\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=675"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}