forked from psget/psget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.xml
1176 lines (1175 loc) · 48.2 KB
/
Directory.xml
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
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<feed xmlns="http://www.w3.org/2005/Atom"
xmlns:psget="urn:psget:v1.0">
<title type="text">PowerShell Modules Directory</title>
<id>https://github.com/psget/psget/raw/master/Directory.xml</id>
<!--<updated>2011-05-01T12:45:13Z</updated> -->
<entry>
<id>Find-String</id>
<title type="text">Find-String</title>
<summary type="text">A PowerShell script to provide functionality similar to grep or ack with highlighting.</summary>
<updated>2011-12-15T16:58:10-05:00</updated>
<author>
<name>David Mohundro</name>
<uri>http://mohundro.com</uri>
<email>david@mohundro.com</email>
</author>
<content type="text/plain" src="https://raw.github.com/drmohundro/Find-String/master/Find-String.psm1" />
<psget:properties>
<psget:ProjectUrl>https://github.com/drmohundro/Find-String/</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>DRSRule</id>
<title type="text">DRSRule</title>
<summary type="text">A PowerShell module for VMware vSphere DRS rule/group management, export, and import</summary>
<updated>2015-01-21T22:30:10-05:00</updated>
<author>
<name>Luc Dekens</name>
<uri>http://lucd.info</uri>
<!--<email></email>-->
</author>
<author>
<name>Matt Boren</name>
<uri>http://vNugglets.com</uri>
<!--<email></email>-->
</author>
<content type="application/zip" src="https://github.com/PowerCLIGoodies/DRSRule/releases/download/Latest/DRSRule.zip" />
<psget:properties>
<psget:ProjectUrl>http://github.com/PowerCLIGoodies/DRSRule</psget:ProjectUrl>
<psget:NoPostInstallHook>true</psget:NoPostInstallHook>
<psget:PostInstallHook>none</psget:PostInstallHook>
<psget:PostUpdateHook>none</psget:PostUpdateHook>
</psget:properties>
</entry>
<entry>
<id>XtremIO.Utils</id>
<title type="text">XtremIO.Utils</title>
<summary type="text">A PowerShell module for EMC XtremIO array management/reporting</summary>
<updated>2014-08-06T22:30:10-05:00</updated>
<author>
<name>Matt Boren</name>
<uri>http://vNugglets.com</uri>
<!--<email></email>-->
</author>
<content type="application/zip" src="http://static.vNugglets.com/files/XtremIO.Utils-PSModule-latest.zip" />
<psget:properties>
<psget:ProjectUrl>http://vNugglets.com</psget:ProjectUrl>
<psget:NoPostInstallHook>true</psget:NoPostInstallHook>
<psget:PostInstallHook>none</psget:PostInstallHook>
<psget:PostUpdateHook>none</psget:PostUpdateHook>
</psget:properties>
</entry>
<entry>
<id>PsIniFile</id>
<title type="text">PsIniFile</title>
<summary type="text">A PowerShell module for reading/writing values from INI files.</summary>
<updated>2014-03-08T00:00:00+10:00</updated>
<author>
<name>James Webster</name>
<uri>http://www.thenewsbeforethenews.com</uri>
<email>jim@james-webster.com</email>
</author>
<content type="application/zip" src="https://github.com/agilewallaby/PsIniFile/releases/download/Version_1.0.0.0/PsIniFile.zip" />
<psget:properties>
<psget:ProjectUrl>https://github.com/agilewallaby/PsIniFile/</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>PsGet</id>
<title type="text">PsGet</title>
<summary type="text">Set of commands to install modules from local file or from the web. Inspired by NuGet</summary>
<updated>2011-05-01T15:52:10-07:00</updated>
<author>
<name>Mike Chaliy</name>
<uri>http://chaliy.name</uri>
<email>mike@chaliy.name</email>
</author>
<content type="text/plain" src="https://github.com/psget/psget/raw/master/PsGet/PsGet.psm1" />
<psget:properties>
<psget:ProjectUrl>https://github.com/psget/psget/</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>PsUrl</id>
<title type="text">PsUrl</title>
<summary type="text">Powershell stuff to download from web. Inspired by curl or wget.</summary>
<updated>2011-05-01T15:52:10-07:00</updated>
<author>
<name>Mike Chaliy</name>
<uri>http://chaliy.name</uri>
<email>mike@chaliy.name</email>
</author>
<content type="text/plain" src="https://github.com/chaliy/psurl/raw/master/PsUrl/PsUrl.psm1" />
<psget:properties>
<psget:ProjectUrl>https://github.com/chaliy/psurl/</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>PoshCode</id>
<title type="text">PoshCode Cmdlets</title>
<summary type="text">Provides cmdlets for working with scripts from the PoshCode Repository</summary>
<updated>2011-05-01T15:52:10-07:00</updated>
<author>
<name>Joel 'Jaykul' Bennett</name>
</author>
<content type="text/plain" src="http://poshcode.org/PoshCode.psm1" />
<psget:properties>
<psget:ProjectUrl>http://poshcode.org/</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>posh-git</id>
<title type="text">posh-git</title>
<summary type="text">A set of PowerShell scripts which provide Git/PowerShell integration</summary>
<updated>2011-12-20T02:16:10-07:00</updated>
<author>
<name>Keith Dahlby</name>
<uri>http://solutionizing.net/</uri>
<email>keith@solutionizing.net</email>
</author>
<content type="application/zip" src="https://github.com/dahlbyk/posh-git/zipball/master/" />
<psget:properties>
<psget:ProjectUrl>https://github.com/dahlbyk/posh-git/</psget:ProjectUrl>
<psget:PostUpdateHook>none</psget:PostUpdateHook>
</psget:properties>
</entry>
<entry>
<id>psake</id>
<title type="text">psake</title>
<summary type="text">A build automation tool... now with less XML...</summary>
<updated>2011-05-01T15:52:10-07:00</updated>
<author>
<name>James Kovacs</name>
<uri>http://www.jameskovacs.com/</uri>
<email>jkovacs@post.harvard.edu</email>
</author>
<content type="application/zip" src="https://github.com/psake/psake/zipball/master" />
<psget:properties>
<psget:ProjectUrl>https://github.com/psake/psake</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>posh-hg</id>
<title type="text">posh-hg</title>
<summary type="text">Mercurial integration for PowerShell</summary>
<updated>2011-12-20T02:26:10-07:00</updated>
<author>
<name>Jeremy Skinner</name>
<uri>http://www.jeremyskinner.co.uk</uri>
</author>
<content type="application/zip" src="https://github.com/JeremySkinner/posh-hg/zipball/master" />
<psget:properties>
<psget:ProjectUrl>https://github.com/JeremySkinner/posh-hg</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>go</id>
<title type="text">go</title>
<summary type="text">Bookmarking for directories</summary>
<updated>2013-06-24T23:21:00-07:00</updated>
<author>
<name>Cameron Harp</name>
<email>charp5257@gmail.com</email>
</author>
<content type="text/plain" src="https://raw.github.com/cameronharp/Go-Shell/master/go.psm1" />
<psget:properties>
<psget:ProjectUrl>https://github.com/cameronharp/Go-Shell</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>posh-svn</id>
<title type="text">posh-svn</title>
<summary type="text">SVN prompt/tab expansion for Windows PowerShell</summary>
<updated>2011-05-01T15:52:10-07:00</updated>
<author>
<name>Jeremy Skinner</name>
<uri>http://www.jeremyskinner.co.uk</uri>
</author>
<content type="application/zip" src="https://github.com/JeremySkinner/posh-svn/zipball/master" />
<psget:properties>
<psget:ProjectUrl>https://github.com/JeremySkinner/posh-svn</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>PowerSpec</id>
<title type="text">PowerSpec</title>
<summary type="text">TDD framework for PowerShell</summary>
<updated>2011-05-01T15:52:10-07:00</updated>
<author>
<name>Sergey Shishkin</name>
<uri>http://shishkin.org</uri>
</author>
<content type="application/zip" src="https://github.com/shishkin/PowerSpec/zipball/master" />
<psget:properties>
<psget:ProjectUrl>https://github.com/shishkin/PowerSpec/</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>PowerYaml</id>
<title type="text">PowerYaml</title>
<summary type="text">Powershell wrapper for Yaml.Net</summary>
<updated>2011-05-01T15:52:10-07:00</updated>
<author>
<name>Scott Muc</name>
<uri>http://scottmuc.com/</uri>
<email>scottmuc@gmail.com</email>
</author>
<content type="application/zip" src="https://github.com/scottmuc/PowerYaml/zipball/master" />
<psget:properties>
<psget:ProjectUrl>https://github.com/scottmuc/PowerYaml</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>PsConfig</id>
<title type="text">PsConfig</title>
<summary type="text">Powershell utilities to easy read/write user settings</summary>
<updated>2011-05-04T18:17:10+02:00</updated>
<author>
<name>Mike Chaliy</name>
<uri>http://chaliy.name</uri>
<email>mike@chaliy.name</email>
</author>
<content type="text/plain" src="https://raw.github.com/chaliy/psconfig/master/PsConfig/PsConfig.psm1" />
<psget:properties>
<psget:ProjectUrl>https://github.com/chaliy/psconfig</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>PsJson</id>
<title type="text">PsJson</title>
<summary type="text">Powershell wrapper for Daniel Crenna JSON library</summary>
<updated>2011-06-13T11:05:31+02:00</updated>
<author>
<name>Mike Chaliy</name>
<uri>http://chaliy.name</uri>
<email>mike@chaliy.name</email>
</author>
<content type="application/zip" src="https://github.com/chaliy/psjson/zipball/master" />
<psget:properties>
<psget:ProjectUrl>https://github.com/chaliy/psjson</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>Pester</id>
<title type="text">Pester</title>
<summary type="text">BDD style testing for PowerShell</summary>
<updated>2011-07-30T21:52:10-07:00</updated>
<author>
<name>Scott Muc</name>
<uri>http://scottmuc.com/</uri>
<email>scottmuc@gmail.com</email>
</author>
<content type="application/zip" src="https://github.com/pester/Pester/zipball/master" />
<psget:properties>
<psget:ProjectUrl>https://github.com/pester/Pester</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>pswatch</id>
<title type="text">PsWatch</title>
<summary type="text">PsWatch: monitoring a directory for changes</summary>
<updated>2011-11-24T19:58:13-07:00</updated>
<author>
<name>José F. Romaniello</name>
<uri>http://joseoncode.com</uri>
<email>jfromaniello@gmail.com</email>
</author>
<content type="text/plain" src="https://raw.github.com/jfromaniello/pswatch/master/pswatch.psm1" />
<psget:properties>
<psget:ProjectUrl>https://github.com/jfromaniello/pswatch/</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>Send-Growl</id>
<title type="text">Send-Growl</title>
<summary type="text">Send-Growl: Growl integration for powershell. Original from Joel 'Jaykul' Bennett</summary>
<updated>2011-12-07T11:00:12-06:00</updated>
<author>
<name>José F. Romaniello</name>
<uri>http://joseoncode.com</uri>
<email>jfromaniello@gmail.com</email>
</author>
<content type="text/plain" src="https://gist.github.com/jfromaniello/1444301/raw/573150c0c28a72ed07d52bf5f87dbad7e441d294/Send-Growl.psm1" />
<psget:properties>
<psget:ProjectUrl>http://huddledmasses.org/more-growl-for-windows-from-powershell/</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>zaz</id>
<title type="text">Zaz</title>
<summary type="text">PowerShell Client for Zaz Command Bus</summary>
<updated>2011-11-25T13:12:11-07:00</updated>
<author>
<name>Mike Chaliy</name>
<uri>http://chaliy.name</uri>
<email>mike@chaliy.name</email>
</author>
<content type="text/plain" src="https://raw.github.com/chaliy/zaz/master/src/Zaz.psm1" />
<psget:properties>
<psget:ProjectUrl>https://github.com/chaliy/zaz/</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>pscx</id>
<title type="text">PowerShell Community Extensions</title>
<summary type="text">PowerShell Community Extensions (PSCX) is aimed at providing a widely useful set of additional cmdlets, providers, aliases, filters, functions and scripts for Windows PowerShell that members of the community have expressed interest in.</summary>
<updated>2012-09-15T08:00:00-08:00</updated>
<author>
<name>Keith Hill</name>
<uri>http://rkeithhill.wordpress.com/</uri>
</author>
<content type="application/zip" src="https://github.com/psget/psget_repository/raw/master/Modules/PSCX/Pscx-2.1.0-RC.zip" />
<psget:properties>
<psget:ProjectUrl>http://pscx.codeplex.com/</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>posh-couch</id>
<title type="text">PoSh-Couch</title>
<summary type="text">A module for interacting with CouchDB via Powershell</summary>
<updated>2010-04-25T12:01:02+01:00</updated>
<author>
<name>Alastair Smith</name>
<uri>http://www.alastairsmith.me.uk/</uri>
<email>posh-couch@alastairsmith.me.uk</email>
</author>
<content type="text/plain" src="https://github.com/alastairs/posh-couch/raw/master/CouchDB.psm1" />
<psget:properties>
<psget:ProjectUrl>https://github.com/alastairs/posh-couch/</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>out-diff</id>
<title type="text">Out-Diff</title>
<summary type="text">Better DIFFs with PowerShell</summary>
<updated>2012-01-18T00:00:00+00:00</updated>
<author>
<name>Enrico Campidoglio</name>
<uri>http://megakemp.wordpress.com/</uri>
</author>
<content type="text/plain" src="https://gist.githubusercontent.com/ecampidoglio/1635952/raw/26ad4dd96e88f727a4d9be37fa24332e05cfeb41/Out-Diff.ps1" />
<psget:properties>
<psget:ProjectUrl>https://gist.github.com/ecampidoglio/1635952</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>Autoload</id>
<title type="text">Autoload Module 1.2</title>
<summary type="text">Automatically load functions from scripts on-demand, instead of having to dot-source them ahead of time, or reparse them from the script every time.</summary>
<updated>2012-03-14T00:00:00+00:00</updated>
<author>
<name>Travis</name>
</author>
<content type="text/plain" src="http://poshcode.org/get/3265" />
<psget:properties>
<psget:ProjectUrl>http://poshcode.org/3265</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>default-ignores</id>
<title type="text">Default Ignores for git and hg</title>
<summary type="text">Adds default ignore files for git and hg to current directory</summary>
<updated>2012-04-14T00:00:00+00:00</updated>
<author>
<name>Serhiy Kalinets</name>
</author>
<content type="text/plain" src="https://raw.github.com/skalinets/add-default-ignores/master/AddDefaultIgnoreFiles.psm1" />
<psget:properties>
<psget:ProjectUrl>https://github.com/skalinets/add-default-ignores</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>Invoke-ElevatedCommand</id>
<title type="text">Invoke-ElevatedCommand</title>
<summary type="text">Invokes the provided script block in a new elevated (Administrator) powershell process,
while retaining access to the pipeline (pipe in and out). Please note, "Write-Host" output
will be LOST - only the object pipeline and errors are handled. In general, prefer
"Write-Output" over "Write-Host" unless UI output is the only possible use of the information.</summary>
<updated>2012-04-20T03:39:11-07:00</updated>
<author>
<name>Tao Klerks</name>
</author>
<content type="text/plain" src="http://poshcode.org/get/3158" />
<psget:properties>
<psget:ProjectUrl>http://poshcode.org/3158</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>ImageSorter</id>
<title type="text">Images importer</title>
<summary type="text">Imports images from the folder and store them into the taken date named subfolders.</summary>
<updated>2012-05-24T00:00:00+00:00</updated>
<author>
<name>Igor Tamashchuk</name>
<email>legigor@gmail.com</email>
<uri>http://igor.quatrocode.com/</uri>
</author>
<content type="text/plain" src="https://raw.github.com/legigor/ImageSorter/master/ImageSorter.psm1" />
<psget:properties>
<psget:ProjectUrl>https://github.com/legigor/ImageSorter</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>PMock</id>
<title type="text">Mocking Framework</title>
<summary type="text">A PowerShell mocking framework. More information can bve found here http://en.wikipedia.org/wiki/Mock_object</summary>
<updated>2012-07-03T00:00:00+00:00</updated>
<author>
<name>Alex Falkowski</name>
<email>alexrfalkowski@gmail.com</email>
</author>
<content type="text/plain" src="https://raw.github.com/alexfalkowski/PMock/master/src/PMock.psm1" />
<psget:properties>
<psget:ProjectUrl>https://github.com/alexfalkowski/PMock</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>PExtend</id>
<title type="text">Extend your objects</title>
<summary type="text">Provides the ability to extend objects. Inspired by jQuery.extend() http://api.jquery.com/jQuery.extend/</summary>
<updated>2012-07-26T00:00:00+00:00</updated>
<author>
<name>Alex Falkowski</name>
<email>alexrfalkowski@gmail.com</email>
</author>
<content type="text/plain" src="https://raw.github.com/alexfalkowski/PExtend/master/src/PExtend.psm1" />
<psget:properties>
<psget:ProjectUrl>https://github.com/alexfalkowski/PExtend</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>posh-npm</id>
<title type="text">posh-npm</title>
<summary type="text">Powershell-NPM integration</summary>
<updated>2012-09-26T11:55:38+02:00</updated>
<author>
<name>Microsoft Open Technologies, Inc.</name>
<uri>https://github.com/MSOpenTech</uri>
</author>
<content type="application/zip" src="https://github.com/MSOpenTech/posh-npm/zipball/master" />
<psget:properties>
<psget:ProjectUrl>https://github.com/MSOpenTech/posh-npm</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>ps-git-ignores</id>
<title type="text">GitIgnore generator for PowerShell</title>
<summary type="text">Module for creating .gitignore files via GitHub templates.</summary>
<updated>2013-02-27T14:00:00+02:00</updated>
<author>
<name>Vitaly Domnikov</name>
<uri>https://github.com/dotCypress</uri>
<email>dotcypress@gmail.com</email>
</author>
<content type="text/plain" src="https://raw.github.com/dotCypress/ps-git-ignores/master/GitIgnores.psm1" />
<psget:properties>
<psget:ProjectUrl>https://raw.github.com/dotCypress/ps-git-ignores</psget:ProjectUrl>
<psget:MinPowerShellVersion>3.0</psget:MinPowerShellVersion>
</psget:properties>
</entry>
<entry>
<id>TabExpansion++</id>
<title type="text">TabExpansion++</title>
<summary type="text">A set of PowerShell scripts which provide Git/PowerShell integration</summary>
<updated>2013-07-22T08:00:00-07:00</updated>
<author>
<name>Jason Shirk</name>
<uri>https://github.com/lzybkr/TabExpansionPlusPlus</uri>
<email>jason@truewheels.net</email>
</author>
<content type="application/zip" src="https://github.com/lzybkr/TabExpansionPlusPlus/zipball/master/" />
<psget:properties>
<psget:ProjectUrl>https://github.com/lzybkr/TabExpansionPlusPlus/</psget:ProjectUrl>
<psget:NoPostInstallHook>true</psget:NoPostInstallHook>
</psget:properties>
</entry>
<entry>
<id>PSReadLine</id>
<title type="text">PSReadLine</title>
<summary type="text"></summary>
<updated>2013-09-12T08:00:00-07:00</updated>
<author>
<name>Jason Shirk</name>
<uri>https://github.com/lzybkr/PSReadLine</uri>
<email>jason@truewheels.net</email>
</author>
<content type="application/zip" src="https://github.com/lzybkr/PSReadLine/releases/download/Latest/PSReadline.zip" />
<psget:properties>
<psget:ProjectUrl>http://github.com/lzybkr/PSReadLine/</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>PSBabushka</id>
<title type="text">PSBabushka</title>
<summary type="text">A configuration management framework built in PowerShell to help automate Windows environments.</summary>
<updated>2013-05-02T20:00:00+10:00</updated>
<author>
<name>James Ottaway</name>
<uri>http://james.ottaway.mp/</uri>
<email>james@psbabushka.net</email>
</author>
<content type="application/zip" src="https://github.com/PSBabushka/PSBabushka/zipball/release" />
<psget:properties>
<psget:ProjectUrl>https://github.com/PSBabushka/PSBabushka</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>PoSHServer</id>
<title type="text">PowerShell Web Server(PoSHServer)</title>
<summary type="text">Secure, flexible and lightweight web server to meet your requirements. </summary>
<updated>2013-05-31T15:49:00+02:00</updated>
<author>
<name>Yusuf Ozturk</name>
<uri>http://www.yusufozturk.info/</uri>
<email>ysfozy@gmail.com</email>
</author>
<content type="application/zip" src="http://www.yusufozturk.info/wp-download.php?file=PoSHServer.v3.2.Source.zip" />
<psget:properties>
<psget:ProjectUrl>http://www.poshserver.net/</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>Teamcity.SpecFlow.Reporting</id>
<title type="text">Teamcity.SpecFlow.Reporting</title>
<summary type="text">Automates, via PowerShell, the process of executing SpecFlow features via specflow.exe to produce a html report that can be shown in TeamCity.</summary>
<updated>2013-09-26T14:22:10-07:00</updated>
<author>
<name>Johan Leino</name>
<uri>http://johanleino.wordpress.com</uri>
<email>leino@outlook.com</email>
</author>
<content type="text/plain" src="https://raw.github.com/jole78/TeamCity.SpecFlow.Reporting/master/src/TeamCity.SpecFlow.Reporting.psm1" />
<psget:properties>
<psget:ProjectUrl>https://github.com/jole78/TeamCity.SpecFlow.Reporting/</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>ITG.Utils</id>
<title type="text">ITG.Utils</title>
<summary type="text">Common PowerShell Cmdlets.</summary>
<updated>2013-10-09T14:22:10-07:00</updated>
<author>
<name>Sergey S. Betke</name>
<email>Sergey.S.Betke@Yandex.RU</email>
</author>
<content type="application/zip" src="https://github.com/IT-Service/ITG.Utils/archive/master.zip" />
<psget:properties>
<psget:ProjectUrl>https://github.com/IT-Service/ITG.Utils/</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>ITG.RegExps</id>
<title type="text">ITG.RegExps</title>
<summary type="text">Common regular expressions.</summary>
<updated>2013-10-09T14:22:10-07:00</updated>
<author>
<name>Sergey S. Betke</name>
<email>Sergey.S.Betke@Yandex.RU</email>
</author>
<content type="application/zip" src="https://github.com/IT-Service/ITG.RegExps/archive/master.zip" />
<psget:properties>
<psget:ProjectUrl>https://github.com/IT-Service/ITG.RegExps/</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>ITG.WinAPI</id>
<title type="text">ITG.WinAPI</title>
<summary type="text">PowerShell module with Windows API wrappers.</summary>
<updated>2013-10-09T14:22:10-07:00</updated>
<author>
<name>Sergey S. Betke</name>
<email>Sergey.S.Betke@Yandex.RU</email>
</author>
<content type="application/zip" src="https://github.com/IT-Service/ITG.WinAPI/archive/master.zip" />
<psget:properties>
<psget:ProjectUrl>https://github.com/IT-Service/ITG.WinAPI/</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>ITG.WinAPI.User32</id>
<title type="text">ITG.WinAPI.User32</title>
<summary type="text">PowerShell module with Windows API wrappers.</summary>
<updated>2013-10-09T14:22:10-07:00</updated>
<author>
<name>Sergey S. Betke</name>
<email>Sergey.S.Betke@Yandex.RU</email>
</author>
<content type="application/zip" src="https://github.com/IT-Service/ITG.WinAPI.User32/archive/master.zip" />
<psget:properties>
<psget:ProjectUrl>https://github.com/IT-Service/ITG.WinAPI.User32/</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>ITG.WinAPI.UrlMon</id>
<title type="text">ITG.WinAPI.UrlMon</title>
<summary type="text">PowerShell module with Windows API wrappers.</summary>
<updated>2013-10-09T14:22:10-07:00</updated>
<author>
<name>Sergey S. Betke</name>
<email>Sergey.S.Betke@Yandex.RU</email>
</author>
<content type="application/zip" src="https://github.com/IT-Service/ITG.WinAPI.UrlMon/archive/master.zip" />
<psget:properties>
<psget:ProjectUrl>https://github.com/IT-Service/ITG.WinAPI.UrlMon/</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>ITG.Readme</id>
<title type="text">ITG.Readme</title>
<summary type="text">Generation readme.md for PowerShell modules, updatable help.</summary>
<updated>2013-10-09T14:22:10-07:00</updated>
<author>
<name>Sergey S. Betke</name>
<email>Sergey.S.Betke@Yandex.RU</email>
</author>
<content type="application/zip" src="https://github.com/IT-Service/ITG.Readme/archive/master.zip" />
<psget:properties>
<psget:ProjectUrl>https://github.com/IT-Service/ITG.Readme/</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>ITG.Yandex</id>
<title type="text">ITG.Yandex</title>
<summary type="text">PowerShell module with Yandex API wrappers.</summary>
<updated>2013-11-14T00:00:00+04:00</updated>
<author>
<name>Sergey S. Betke</name>
<email>Sergey.S.Betke@Yandex.RU</email>
</author>
<content type="application/zip" src="https://github.com/IT-Service/ITG.Yandex/archive/master.zip" />
<psget:properties>
<psget:ProjectUrl>https://github.com/IT-Service/ITG.Yandex/</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>ITG.Yandex.PDD</id>
<title type="text">ITG.Yandex.PDD</title>
<summary type="text">PowerShell module with Yandex mail server API wrappers.</summary>
<updated>2013-11-14T00:00:00+04:00</updated>
<author>
<name>Sergey S. Betke</name>
<email>Sergey.S.Betke@Yandex.RU</email>
</author>
<content type="application/zip" src="https://github.com/IT-Service/ITG.Yandex.PDD/archive/master.zip" />
<psget:properties>
<psget:ProjectUrl>https://github.com/IT-Service/ITG.Yandex.PDD/</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>ITG.Yandex.DnsServer</id>
<title type="text">ITG.Yandex.DnsServer</title>
<summary type="text">PowerShell module with Yandex DNS API wrappers.</summary>
<updated>2013-11-14T00:00:00+04:00</updated>
<author>
<name>Sergey S. Betke</name>
<email>Sergey.S.Betke@Yandex.RU</email>
</author>
<content type="application/zip" src="https://github.com/IT-Service/ITG.Yandex.DnsServer/archive/master.zip" />
<psget:properties>
<psget:ProjectUrl>https://github.com/IT-Service/ITG.Yandex.DnsServer/</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>ITG.SkyDrive</id>
<title type="text">ITG.SkyDrive</title>
<summary type="text">PowerShell module with SkyDrive provider.</summary>
<updated>2013-10-09T14:22:10-07:00</updated>
<author>
<name>Sergey S. Betke</name>
<email>Sergey.S.Betke@Yandex.RU</email>
</author>
<content type="application/zip" src="https://github.com/IT-Service/ITG.SkyDrive/archive/master.zip" />
<psget:properties>
<psget:ProjectUrl>https://github.com/IT-Service/ITG.SkyDrive/</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>ITG.Outlook</id>
<title type="text">ITG.Outlook</title>
<summary type="text">PowerShell module with Outlook API wrappers.</summary>
<updated>2013-10-09T14:22:10-07:00</updated>
<author>
<name>Sergey S. Betke</name>
<email>Sergey.S.Betke@Yandex.RU</email>
</author>
<content type="application/zip" src="https://github.com/IT-Service/ITG.Outlook/archive/master.zip" />
<psget:properties>
<psget:ProjectUrl>https://github.com/IT-Service/ITG.Outlook/</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>PsEnv</id>
<title type="text">PsEnv</title>
<summary type="text">A simple PowerShell module that allows specific tools to be added to the current environment by updating environment variables from a JSON file.</summary>
<updated>2013-10-24T00:13:10Z</updated>
<author>
<name>Kier J. Dugan</name>
<uri>http://www.kierdugan.com</uri>
<email>kier.dugan@soton.ac.uk</email>
</author>
<content type="application/zip" src="https://github.com/DuFace/PsEnv/releases/download/v1.0/PsEnv.zip" />
<psget:properties>
<psget:ProjectUrl>https://github.com/DuFace/PsEnv</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>Gmail.ps</id>
<title type="text">Gmail.ps</title>
<summary type="text">A PowerShell module for managing your Gmail.</summary>
<updated>2013-11-28T15:49:11+02:00</updated>
<author>
<name>Nikolay Blagoev</name>
</author>
<content type="application/zip" src="https://github.com/nikoblag/Gmail.ps/zipball/master" />
<psget:properties>
<psget:ProjectUrl>https://github.com/nikoblag/Gmail.ps</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>Plastic</id>
<title type="text">Plastic</title>
<summary type="text">Cmdlets and TabExpansion++ completions for interacting with Plastic SCM.</summary>
<updated>2013-12-08T15:49:11+02:00</updated>
<author>
<name>Staffan Gustafsson</name>
<name>staffangu@outlook.com</name>
</author>
<content type="application/zip" src="https://github.com/powercode/PSPlastic/releases/download/release-0.5/Plastic.zip" />
<psget:properties>
<psget:ProjectUrl>https://github.com/powercode/PSPlastic</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>Posh-Junos</id>
<title type="text">Posh-Junos</title>
<summary type="text">Module to interact with Juniper Network's Junos devices, including configuration, executing remote commands, etc.</summary>
<updated>2014-04-04T08:00:13-5:00</updated>
<author>
<name>Scott Ware</name>
<name>scottdware@gmail.com</name>
</author>
<content type="text/plain" src="https://raw.githubusercontent.com/scottdware/Posh-Junos/master/Posh-Junos.psm1" />
<psget:properties>
<psget:ProjectUrl>https://github.com/scottdware/Posh-Junos</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>AWSInstanceTools</id>
<title type="text">AWSInstanceTools</title>
<summary type="text">Amazon Web Services Instances Tools.</summary>
<updated>2014-04-28T17:24:00-3:00</updated>
<author>
<name>Kunzi Mariano</name>
</author>
<content type="text/plain" src="https://raw.githubusercontent.com/openAgile/AWSInstanceTools/master/AWSInstanceTools.psm1" />
<psget:properties>
<psget:ProjectUrl>https://github.com/openAgile/AWSInstanceTools</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>posh-gvm</id>
<title type="text">posh-gvm</title>
<summary type="text">Groovy enVironment Manager for Powershell</summary>
<updated>2014-05-04T14:28:00+02:00</updated>
<author>
<name>Florian Freudenberg</name>
</author>
<content type="application/zip" src="https://github.com/flofreud/posh-gvm/zipball/master/" />
<psget:properties>
<psget:ProjectUrl>https://github.com/flofreud/posh-gvm/</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>PoshZen</id>
<title type="text">PoshZen</title>
<summary type="text">Zendesk Manager for Powershell</summary>
<updated>2014-05-12T15:00:28-07:00</updated>
<author>
<name>Weston McNamee</name>
</author>
<content type="application/zip" src="https://github.com/ghostsquad/PoshZen/releases/download/v0.1-alpha/0.1.0.0-alpha.zip" />
<psget:properties>
<psget:ProjectUrl>https://github.com/ghostsquad/PoshZen/</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>z</id>
<title type="text">z</title>
<summary type="text">z lets you quickly navigate the file system in PowerShell based on your cd command history.</summary>
<updated>2014-05-28T10:00:28-07:00</updated>
<author>
<name>Vince Panuccio</name>
</author>
<content type="text/plain" src="https://raw.githubusercontent.com/vincpa/z/master/z.psm1" />
<psget:properties>
<psget:ProjectUrl>https://github.com/vincpa/z</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>SplitPipeline</id>
<title type="text">SplitPipeline</title>
<summary type="text">SplitPipeline - Parallel Data Processing in PowerShell</summary>
<updated>2014-05-11T00:00:00-00:00</updated>
<author>
<name>nightroman</name>
</author>
<content type="application/zip" src="http://nuget.org/api/v2/package/SplitPipeline" />
<psget:properties>
<psget:ProjectUrl>https://github.com/nightroman/SplitPipeline</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>TfDash</id>
<title type="text">TfDash</title>
<summary type="text">TfDash is a PowerShell wrapper for the Team Foundation Server command-line tool 'tf.exe'. For installation details see the project info.</summary>
<updated>2014-09-27T00:00:00-00:00</updated>
<author>
<name>Sumo300</name>
</author>
<content type="application/zip" src="https://bitbucket.org/Sumo/tfdash/get/default.zip" />
<psget:properties>
<psget:ProjectUrl>https://bitbucket.org/Sumo/tfdash/overview</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>Jump.Location</id>
<title type="text">Jump.Location</title>
<summary type="text">Jump.Location is a PowerShell port of autojump, which tracks the cd-behavior of the user to provided a auto generate favorite list for navigation with path parts.</summary>
<updated>2014-10-01T00:00:00-00:00</updated>
<author>
<name>tkellogg</name>
</author>
<content type="application/zip" src="http://sourceforge.net/projects/jumplocation/files/latest/download" />
<psget:properties>
<psget:ProjectUrl>https://github.com/tkellogg/Jump-Location</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>ProtectedData</id>
<title type="text">ProtectedData</title>
<summary type="text">'Encrypt and share secret data between different users and computers.</summary>
<updated>2014-10-12T00:00:00+10:00</updated>
<author>
<name>Dave Wyatt</name>
<uri>http://davewyatt.wordpress.com/</uri>
<email>dlwyatt115@gmail.com</email>
</author>
<content type="application/zip" src="http://onedrive.live.com/download?resid=A2EBA8D8AFA70CF%2114264" />
<psget:properties>
<psget:ProjectUrl>https://github.com/dlwyatt/ProtectedData</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>PoShWarp</id>
<title type="text">PoShWarp</title>
<summary type="text">A PowerShell port of the warp directory plug-in for zsh.</summary>
<updated>2015-01-14T23:11:17Z</updated>
<author>
<name>Kier J. Dugan</name>
<uri>http://www.kierdugan.com/</uri>
<email>kier.dugan@soton.ac.uk</email>
</author>
<content type="text/plain" src="https://raw.githubusercontent.com/DuFace/PoShWarp/master/PoShWarp.psm1" />
<psget:properties>
<psget:ProjectUrl>https://github.com/DuFace/PoShWarp</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>PoShAncestry</id>
<title type="text">PoShAncestry</title>
<summary type="text">Quickly go back to a specific directory instead of typing cd ..\..\.. redundantly. Based on zsh-bd and bd.</summary>
<updated>2015-05-23T18:14:54Z</updated>
<author>
<name>Kier J. Dugan</name>
<uri>http://www.kierdugan.com/</uri>
<email>kier.dugan@soton.ac.uk</email>
</author>
<content type="text/plain" src="https://raw.githubusercontent.com/DuFace/PoShAncestry/release-1/PoShAncestry.psm1" />
<psget:properties>
<psget:ProjectUrl>https://github.com/DuFace/PoShAncestry</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>PSColor</id>
<title type="text">PSColor</title>
<summary type="text">Basic PowerShell output highlighting.</summary>
<updated>2014-12-13T23:12:00Z</updated>
<author>
<name>David Lindblad</name>
<uri>http://davlind.github.io/</uri>
<email>david.lindblad@hotmail.com</email>
</author>
<content type="application/zip" src="https://github.com/Davlind/PSColor/raw/master/release/PSColor.zip" />
<psget:properties>
<psget:ProjectUrl>https://github.com/Davlind/PSColor</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>PsHosts</id>
<title type="text">PsHosts</title>
<summary type="text">Provides Cmdlets for managing entries in the systems hosts file. Supports tab completion and whatif</summary>
<updated>2014-12-14T17:57:00+10:00</updated>
<author>
<name>Richard Szalay</name>
<uri>http://www.richardszalay.com/</uri>
<email>richard@richardszalay.com</email>
</author>
<content type="application/zip" src="https://github.com/richardszalay/pshosts/releases/download/v1.0.0/PsHosts.zip" />
<psget:properties>
<psget:ProjectUrl>https://github.com/richardszalay/pshosts</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>PsIni</id>
<title type="text">PsIni</title>
<summary type="text">Persist a PowerShell hashtable as an INI file.</summary>
<updated>2014-12-16T07:54:00-05:00</updated>
<author>
<name>Oliver Lipkau</name>
<uri>http://oliver.lipkau.net/blog/</uri>
<email/>
</author>
<content type="application/zip" src="https://github.com/lipkau/PsIni/archive/master.zip"/>
<psget:properties>
<psget:ProjectUrl>https://github.com/lipkau/PsIni</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>nvm</id>
<title type="text">Node/io.js Version Manager</title>
<summary type="text">A version manager of Node/io.js allowing multiple installs on a single machine</summary>
<updated>2015-01-14T22:00:00+11:00</updated>
<author>
<name>Aaron Powell</name>
<uri>http://www.aaron-powell.com</uri>
<email/>
</author>
<content type="text/plain" src="https://raw.githubusercontent.com/aaronpowell/ps-nvmw/master/NodeVersionManager.psm1"/>
<psget:properties>
<psget:ProjectUrl>https://github.com/aaronpowell/ps-nvmw</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>PoshStack</id>
<title type="text">PowerShell client for OpenStack</title>
<summary type="text">Create Servers, Containers, work with Objects, all via PowerShell</summary>
<updated>2015-01-28T22:00:00+11:00</updated>
<author>
<name>Don Schenck</name>
<uri>http://donv2.blogspot.com</uri>
<email>don.schenck@rackspace.com</email>
</author>
<content type="application/zip" src="https://github.com/donschenck/PoshStack/archive/master.zip"/>
<psget:properties>
<psget:ProjectUrl>https://github.com/donschenck/PoshStack</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>PowerLS</id>
<title type="text">A fancier, colored ls</title>
<summary type="text">Get colors in your ls!</summary>
<updated>2015-02-10T22:00:00+11:00</updated>
<author>
<name>Jesse Jurman</name>
<uri>http://jrjurman.com</uri>
<email>j.r.jurman@gmail.com</email>
</author>
<content type="application/zip" src="https://github.com/jrjurman/powerls/archive/master.zip"/>
<psget:properties>
<psget:ProjectUrl>https://github.com/jrjurman/powerls</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>WiFi-Password</id>
<title type="text">View password of Wi-Fi network.</title>
<summary type="text">Allows to view stored password of currently or earlier connected Wi-Fi network.</summary>
<updated>2015-02-15T19:20:00+02:00</updated>
<author>
<name>Ingvar Stepanyan</name>
<uri>http://rreverser.com</uri>
<email>me@rreverser.com</email>
</author>
<content type="application/zip" src="https://github.com/RReverser/WiFi-Password/archive/master.zip"/>
<psget:properties>
<psget:ProjectUrl>https://github.com/RReverser/WiFi-Password</psget:ProjectUrl>
</psget:properties>
</entry>
<entry>
<id>PsSubversion</id>
<title type="text">Subversion Module</title>