-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMulti-AD-Profile-Scraper.ps1
2728 lines (2700 loc) · 55.9 KB
/
Multi-AD-Profile-Scraper.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Daniel Bak and Andre P AD Multi Scraper
# Version 1.5.2
# Works only for US numbers for now pulling AD accounts
##########################################################################
############# Multi Scraper ###############################
######################################
############################################
#Functions
############################################
function startMultipass {
while(-1){
switch (Read-Host 'Would you like to see if user is in Risky Users? (Y/N)'){
Y {
Multipass
}
N { core }
default { Write-Host 'Only Y/N valid' -fore red }
}
}
}
function Multipass
{
$apiPermissionScopes = @("IdentityRiskyUser.Read.All", "IdentityRiskyUser.ReadWrite.All")
Connect-Graph -Scopes $apiPermissionScopes
Select-MgProfile -name beta
######################################
Try
{
Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass
}
Finally
{
$low = Get-MgRiskyUser -Filter "RiskLevel eq 'low'" | select -ExpandProperty UserPrincipalName
$medium = Get-MgRiskyUser -Filter "RiskLevel eq 'medium'" | select -ExpandProperty UserPrincipalName
$high = Get-MgRiskyUser -Filter "RiskLevel eq 'high'" | select -ExpandProperty UserPrincipalName
# Low Alerts
If ($low -contains $useremail) {
Write-Host "$useremail is in Low Alert" -ForegroundColor green
switch (Read-Host 'Would you like to release user from Risky Users? (Y/N)')
{
Y {
$mediumid = Get-MgRiskyUser -Filter "RiskLevel eq 'low'" | Where-Object {$_.UserPrincipalName -eq "$useremail"} | Select -ExpandProperty Id
Invoke-MgDismissRiskyUser -UserIds $mediumid
Write-Host "$username has been released from the ghost trap" -fore green
}
N { core }
default { Write-Host 'Only Y/N valid' -fore red }
}
} Else {
Write-Host "$useremail is not in Low Alert" -ForegroundColor red
}
#Medium Alerts
If ($medium -contains $useremail) {
Write-Host "$useremail is in Medium Alert" -ForegroundColor green
switch (Read-Host 'Would you like to release user from Risky Users? (Y/N)')
{
Y {
$mediumid = Get-MgRiskyUser -Filter "RiskLevel eq 'medium'" | Where-Object {$_.UserPrincipalName -eq "$useremail"} | Select -ExpandProperty Id
Invoke-MgDismissRiskyUser -UserIds $mediumid
Write-Host "$username has been released from the ghost trap" -fore green
}
N { core }
default { Write-Host 'Only Y/N valid' -fore red }
}
} Else {
Write-Host "$useremail is not in Medium Alert" -ForegroundColor red
}
#High Alerts
If ($high -contains $useremail) {
Write-Host "$useremail is in High Alert" -ForegroundColor green
switch (Read-Host 'Would you like to release user from Risky Users? (Y/N)')
{
Y {
$mediumid = Get-MgRiskyUser -Filter "RiskLevel eq 'high'" | Where-Object {$_.UserPrincipalName -eq "$useremail"} | Select -ExpandProperty Id
Invoke-MgDismissRiskyUser -UserIds $mediumid
Write-Host "$username has been released from the ghost trap" -fore green
}
N { core }
default { Write-Host 'Only Y/N valid' -fore red }
}
} Else {
Write-Host "$useremail is not in High Alert" -ForegroundColor red
}
}
core
}
function MSol
{
Connect-MsolService
Write-Host " "
Write-Host "MFA"
Write-Host '--------------------------'
Get-MsolUser -UserPrincipalName $useremail | select strongauthentication*
}
function core
{
############################################
#Core - AD OU and phone checker
############################################
$server = "domain"
$Username = Read-Host -Prompt 'Input User Name' # enter in username here
Write-Host ""
Write-Host ""
Write-Host "OU Object "
Write-Host '--------------------------'
$aduser = Get-ADUser -Server $server -Identity $Username -Properties * | Select DistinguishedName,Description,Division,Title,PasswordLastSet,TelephoneNumber # scrapes profile
$aduser
$Grabphone = $aduser | Select-Object -Property TelephoneNumber # takes phone number and reformats output
$Formatnum = Out-String -InputObject $Grabphone.TelephoneNumber
$phone = $Formatnum.Substring(0,5)
# O365 Exclusion policy Checker
$group1 = "group1 example"
$group2 = "group2 example"
$adchecker1 = Get-ADGroupMember -Server $server -Identity $group1 -Recursive | Select -ExpandProperty SamAccountName
$adchecker2 = Get-ADGroupMember -Server $server -Identity $group2 -Recursive | Select -ExpandProperty SamAccountName
$global:useremail = "[email protected]"
# Core script
# oh yeah its all coming togeather. - Kronk
Write-Host ""
Write-Host "O365 Policy Excluded Checker"
Write-Host '--------------------------'
If ($adchecker1 -contains $username) {
Write-Host "$Username is in group1" -ForegroundColor green
} Else {
Write-Host "$Username is not in group1" -ForegroundColor red
}
If ($adchecker2 -contains $username) {
Write-Host "$Username is in group2" -ForegroundColor green
} Else {
Write-Host "$Username is not in group2" -ForegroundColor red
}
Write-Host " "
Write-Host "Phone"
Write-Host '--------------------------'
# Takes first 4 digits of the number and compares it to library of area codes in the states
# scrapped this site for area code data https://www.allareacodes.com/area_code_listings_by_state.htm
if ([string]$phone -like "+1201"){
Write-Host "$phone is from
Jersey City, NJ" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1202") {
Write-Host "$phone is from
District of Columbia" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1203") {
Write-Host "$phone is from
Bridgeport, CT" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1204") {
Write-Host "$phone is from
Manitoba" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1205") {
Write-Host "$phone is from
Birmingham, AL" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1206")
{
Write-Host "$phone is from
Seattle, WA" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1207") {
Write-Host "$phone is from
Portland, ME" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1208") {
Write-Host "$phone is from
Idaho" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1209") {
Write-Host "$phone is from
Stockton, CA" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1210") {
Write-Host "$phone is from
San Antonio, TX" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1212") {
Write-Host "$phone is from
New York, NY" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1213") {
Write-Host "$phone is from
Los Angeles, CA" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1214") {
Write-Host "$phone is from
Dallas, TX" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1215") {
Write-Host "$phone is from
Philadelphia, PA" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1216") {
Write-Host "$phone is from
Cleveland, OH" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1217") {
Write-Host "$phone is from
Springfield, IL" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1218") {
Write-Host "$phone is from
Duluth, MN" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1219") {
Write-Host "$phone is from
Hammond, IN" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1220") {
Write-Host "$phone is from
Newark, OH" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1223") {
Write-Host "$phone is from
Lancaster, PA" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1224") {
Write-Host "$phone is from
Elgin, IL" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1225") {
Write-Host "$phone is from
Baton Rouge, LA" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1226") {
Write-Host "$phone is from
London, ON" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1228") {
Write-Host "$phone is from
Gulfport, MS" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1229") {
Write-Host "$phone is from
Albany, GA" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1231") {
Write-Host "$phone is from
Muskegon, MI" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1234") {
Write-Host "$phone is from
Akron, OH" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1236") {
Write-Host "$phone is from
Vancouver, BC" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1239") {
Write-Host "$phone is from
Cape Coral, FL" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1240") {
Write-Host "$phone is from
Germantown, MD" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1248") {
Write-Host "$phone is from
Troy, MI" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1249") {
Write-Host "$phone is from
Sudbury, ON" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1250") {
Write-Host "$phone is from
Kelowna, BC" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1251") {
Write-Host "$phone is from
Mobile, AL" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1252") {
Write-Host "$phone is from
Greenville, NC" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1253") {
Write-Host "$phone is from
Tacoma, WA" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1254") {
Write-Host "$phone is from
Killeen, TX" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1256") {
Write-Host "$phone is from
Huntsville, AL" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1260") {
Write-Host "$phone is from
Fort Wayne, IN" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1262") {
Write-Host "$phone is from
Kenosha, WI" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1267") {
Write-Host "$phone is from
Philadelphia, PA" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1269") {
Write-Host "$phone is from
Kalamazoo, MI" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1270") {
Write-Host "$phone is from
Bowling Green, KY" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1272") {
Write-Host "$phone is from
Scranton, PA" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1276") {
Write-Host "$phone is from
Bristol, VA" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1279") {
Write-Host "$phone is from
Sacramento, CA" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1281") {
Write-Host "$phone is from
Houston, TX" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1289") {
Write-Host "$phone is from
Hamilton, ON" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1301") {
Write-Host "$phone is from
Germantown, MD" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1302") {
Write-Host "$phone is from
Delaware" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1303") {
Write-Host "$phone is from
Denver, CO" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1304") {
Write-Host "$phone is from
West Virginia" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1305") {
Write-Host "$phone is from
Miami, FL" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1306") {
Write-Host "$phone is from
Saskatchewan" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1307") {
Write-Host "$phone is from
Wyoming" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1308") {
Write-Host "$phone is from
Grand Island, NE" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1309") {
Write-Host "$phone is from
Peoria, IL" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1310") {
Write-Host "$phone is from
Los Angeles, CA" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1312") {
Write-Host "$phone is from
Chicago, IL" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1313") {
Write-Host "$phone is from
Detroit, MI" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1314") {
Write-Host "$phone is from
St. Louis, MO" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1315") {
Write-Host "$phone is from
Syracuse, NY" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1316") {
Write-Host "$phone is from
Wichita, KS" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1317") {
Write-Host "$phone is from
Indianapolis, IN" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1318") {
Write-Host "$phone is from
Shreveport, LA" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1319") {
Write-Host "$phone is from
Cedar Rapids, IA" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1320") {
Write-Host "$phone is from
St. Cloud, MN" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1321") {
Write-Host "$phone is from
Orlando, FL" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1323") {
Write-Host "$phone is from
Los Angeles, CA" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1325") {
Write-Host "$phone is from
Abilene, TX" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1330") {
Write-Host "$phone is from
Akron, OH" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1331") {
Write-Host "$phone is from
Aurora, IL" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1332") {
Write-Host "$phone is from
New York, NY" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1334") {
Write-Host "$phone is from
Montgomery, AL" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1336") {
Write-Host "$phone is from
Greensboro, NC" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1337") {
Write-Host "$phone is from
Lafayette, LA" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1339") {
Write-Host "$phone is from
Boston, MA" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1340") {
Write-Host "$phone is from
Virgin Islands" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1343") {
Write-Host "$phone is from
Ottawa, ON" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1346") {
Write-Host "$phone is from
Houston, TX" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1347") {
Write-Host "$phone is from
New York, NY" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1351") {
Write-Host "$phone is from
Lowell, MA" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1352") {
Write-Host "$phone is from
Gainesville, FL" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1360") {
Write-Host "$phone is from
Vancouver, WA" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1361") {
Write-Host "$phone is from
Corpus Christi, TX" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1364") {
Write-Host "$phone is from
Bowling Green, KY" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1365") {
Write-Host "$phone is from
Hamilton, ON" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1367") {
Write-Host "$phone is from
Quebec, QC" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1380") {
Write-Host "$phone is from
Columbus, OH" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1385") {
Write-Host "$phone is from
Salt Lake City, UT" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1386") {
Write-Host "$phone is from
Palm Coast, FL" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1401") {
Write-Host "$phone is from
Providence, RI" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1402") {
Write-Host "$phone is from
Omaha, NE" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1403") {
Write-Host "$phone is from
Calgary, AB" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1404") {
Write-Host "$phone is from
Atlanta, GA" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1405") {
Write-Host "$phone is from
Oklahoma City, OK" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1406") {
Write-Host "$phone is from
Montana" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1407") {
Write-Host "$phone is from
Orlando, FL" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1408") {
Write-Host "$phone is from
San Jose, CA" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1409") {
Write-Host "$phone is from
Beaumont, TX" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1410") {
Write-Host "$phone is from
Baltimore, MD" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1412") {
Write-Host "$phone is from
Pittsburgh, PA" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1413") {
Write-Host "$phone is from
Springfield, MA" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1414") {
Write-Host "$phone is from
Milwaukee, WI" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1415") {
Write-Host "$phone is from
San Francisco, CA" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1416") {
Write-Host "$phone is from
Toronto, ON" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1417") {
Write-Host "$phone is from
Springfield, MO" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1418") {
Write-Host "$phone is from
Quebec, QC" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1419") {
Write-Host "$phone is from
Toledo, OH" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1423") {
Write-Host "$phone is from
Chattanooga, TN" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1424") {
Write-Host "$phone is from
Los Angeles, CA" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1425") {
Write-Host "$phone is from
Bellevue, WA" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1430") {
Write-Host "$phone is from
Tyler, TX" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1431") {
Write-Host "$phone is from
Manitoba" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1432") {
Write-Host "$phone is from
Midland, TX" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1434") {
Write-Host "$phone is from
Lynchburg, VA" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1435") {
Write-Host "$phone is from
St. George, UT" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1437") {
Write-Host "$phone is from
Toronto, ON" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1438") {
Write-Host "$phone is from
Montreal, QC" -ForegroundColor green
pause
startMultipass
break
}
if ([string]$phone -like "+1440") {
Write-Host "$phone is from