Πέμπτη 21 Μαΐου 2020

OpenmediaVault NAS notes



openmediavault is a network attached storage (NAS) solution based on Debian Linux. It contains services like SSH, (S)FTP, SMB/CIFS, DAAP media server, RSync, BitTorrent client and many more. Thanks to the modular design of the framework it can be enhanced via plugins.

openmediavault is primarily designed to be used in small offices or home offices, but is not limited to those scenarios. It is a simple and easy to use out-of-the-box solution that will allow everyone to install and administrate a Network Attached Storage without deeper knowledge.

Παρασκευή 3 Απριλίου 2020

Bonita BPM

Bonita BPM is an open-source business process management and workflow application platform for building highly engaging, personalized, process-based business applications to get things done, take full advantage of BPM, and adapt to business changes in real time.

Πέμπτη 30 Ιανουαρίου 2020

How to Remove All Built-in Apps in Windows 10

Use following commands in a powershell admin console or script with admin rights:
  • to uninstall all built-in apps for all user accounts: 
Get-AppxPackage -AllUsers | Remove-AppxPackage 
  • to prevent apps from installing for new users we need to remove Provisioned Packages:
Import-Module Appx
Import-Module Dism
Get-AppXProvisionedPackage -online  | Remove-AppxProvisionedPackage -online

*Note 1

Run the following command to allow scripts to run.
Set-ExecutionPolicy Unrestricted
After you have finished set it back using the below command.
Set-ExecutionPolicy Restricted