Tag Archives: powershell

Powershell: Working with a SQLite Database

Hi,

SQLite Databases are widly used, even Windows uses for the organisation of its Appx Packages a SQLite database. This database is located in the file C:\ProgramData\Microsoft\Windows\AppRepository\StateRepository-Machine.srd.

Continue reading Powershell: Working with a SQLite Database

Advertisment to support michlstechblog.info

Powershell: Change the title of the powershell window from a script

Hi,

sometimes it would be nice to see the status of a script in the title of the powershell window.
Continue reading Powershell: Change the title of the powershell window from a script

Windows: Certificate locations

Hi,

the Windows certificates MMC plugin allows to view and edit the most (expect the enterprise store) of the certificates Windows uses. But the location of the certificates is not really transparent.

Here is a list where those certificates resides physically.
Continue reading Windows: Certificate locations

Powershell: Export/Convert a X509 Certificate to pem format

Hi,

powershell respectively the .NET framework does not offer a method to export a X509 certificate in PEM format. The pem format is a Base64 encoded view from the raw data with a header and a footer.

An example to export the machine certificate (with Thumbprint: 1C0381278083E3CB026E46A7FF09FC4B79543D) of an computer
Continue reading Powershell: Export/Convert a X509 Certificate to pem format

Powershell: Convert Hex to Int type

Hi,

short post today. Topic: convert a hex string to an integer type.
Continue reading Powershell: Convert Hex to Int type