With following procedure you can create a .p12/.pfx certificate with a *.crt (CA) and a *.key (Key file) file.
openssl pkcs12 -export -in ca.crt -inkey keyfile.key -out out.p12
some foobar
With following procedure you can create a .p12/.pfx certificate with a *.crt (CA) and a *.key (Key file) file.
openssl pkcs12 -export -in ca.crt -inkey keyfile.key -out out.p12
With following procedure you can change your password on an .p12/.pfx certificate using openssl.
Export you current certificate to a passwordless pem type:
openssl pkcs12 -in mycert.pfx/mycert.p12 -out tmpmycert.pem -nodes Enter Import Password: <Enter no password> MAC verified OK
Convert the passwordless pem to a new pfx file with password:
openssl pkcs12 -export -out mycert2.pfx/mycert2.p12 -in tmpmycert.pem Enter Export Password: <Enter password here> Verifying - Enter Export Password: <Enter password here>
Now you are done and can use the new mycert2.pfx file with your new password.
[via]http://stackoverflow.com/a/35158695[/via]
INSERT INTO component_cc (SELECT '<user id>' as user_id, component_id FROM component_cc JOIN components ON component_cc.component_id = components.id WHERE components.product_id = <product id>)
wmic group WHERE Name="oldname" CALL Rename "newname"
forfiles allows command line users to run commands for each file in a location. Some of the tasks that the forfiles command can be used to do are deleting old files and renaming files. It a native command in Vista or newer. For WinXP you can find it in the Recource Kit.
Example:
forfiles -p "E:\VideoArchiv" -s -m *.asf -d -01.01.2014 -c "cmd /c echo @path >> E:\del.txt"
Find PID:
sc queryex <service name>
Kill process:
taskkill /F /PID <Service PID>
[via]http://stackoverflow.com/questions/6297071/stopping-a-windows-service-when-the-stop-option-is-grayed-out[/via]
Because I can't remember it:
[via]https://helpx.adobe.com/illustrator/using/formatting-type.html#WS18156339-458C-45e1-8CD0-DD7931678BBE[/via]