Posts

Showing posts from 2012

ProShow Producer Stylepacks for ProShow Gold

Image
Photodex ProShow Producer Stylepacks for ProShow Gold - Hack   Share your most precious memories with the award-winning ProShow Gold slideshow software. Easily combine your photos, video clips and music to create personalized slide shows to share with friends and family in your living room or across the world. Drag and drop your photos, videos and music into ProShow Gold's easy-to-use interface. There you can add borders to photos, crop and edit video and audio clips, use built-in editing tools like red-eye removal and more. Create spectacular effects by adding a pan, zoom or rotate to any photo in your show. Choose from over 280 transition styles including dissolves, fades, wipes, and shapes. Add custom captions and backgrounds to any photo. ProShow Gold will output your slide show to over 40 formats including DVD, Blu-ray, CD, the Web and dozens of devices like the iPod®, iPhone. However if you wanna install those ProShow Producer's Additiona...

How to start a service using cmd

Image
How to start a service using cmd    To Start a service using Command Prompt ( CMD )  Launch command prompt from start menu or type CMD in Run and then press enter Now start your desired service using the Syntax: NET START ServiceName Example: Starting windows installer service using NET command Type NET START MSISERVER To stop the desired service from command prompt: Type NET STOP SERVICENAME   SC: Service Control The SC command can be used in a similar way to Start, Query, Stop a Service in Windows Example: Starting windows installer service using SC command Type SC START MSISERVER     To stop the desired service Type  SC STOP SERVICENAME and press Enter As you see i'm checking the service using SC QUERY MSISERVER to check the status of the Service   You can checkout other switches and what  they do by typing SC /?