Truecrypt share mounted container

First edit your /etc/fuse.conf to allow other users by uncommenting the user_allow_other line at the bottom. (use gksu gedit /etc/fuse.conf)

Next you’ve got to mount the Truecrypt volume with read permissions for “other”. Do that from the command line using:


truecrypt --fs-options="uid=1000,gid=1000,umask=0002" -m="ro" -k "" --protect-hidden=no /path /куда


-m=”ro” = read only
-k “” без ключей
–protect-hidden=no
/path = path to you container

для анмаунта
umount /media
truecrypt -d /путь до файла контенера

Windows 10: Удаление программ по умолчанию

Запускаем PowerShell от админа:

 

 

Для получения списка приложений:
Get-AppxPackage -User username

Удаляем приложение 3D из Windows 10
Get-AppxPackage *3d* | Remove-AppxPackage

Удаляем приложение Camera из Windows 10
Get-AppxPackage *camera* | Remove-AppxPackage

Удаляем приложение Mail and Calendar из Windows 10
Get-AppxPackage *communi* | Remove-AppxPackage

Удаляем приложение Money, Sports, News and Weather из Windows 10
Get-AppxPackage *bing* | Remove-AppxPackage

Удаляем приложение Groove Music and Film & TV из Windows 10
Get-AppxPackage *zune* | Remove-AppxPackage

Удаляем приложение People из Windows 10
Get-AppxPackage *people* | Remove-AppxPackage

Удаляем приложение Phone Companion из Windows 10
Get-AppxPackage *phone* | Remove-AppxPackage

Удаляем приложение Photos из Windows 10
Get-AppxPackage *photo* | Remove-AppxPackage

Удаляем приложение Solitaire Collection из Windows 10
Get-AppxPackage *solit* | Remove-AppxPackage

Удаляем приложение Voice Recorder из Windows 10
Get-AppxPackage *soundrec* | Remove-AppxPackage

Удаляем приложение Xbox из Windows 10
Get-AppxPackage *xbox* | Remove-AppxPackage

Удаляем приложение maps из Windows 10
Get-AppxPackage *maps* | Remove-AppxPackage

Удаляем приложение store из Windows 10
Get-AppxPackage *store* | Remove-AppxPackage

Удаляем приложение onenote из Windows 10
Get-AppxPackage *onenote* | Remove-AppxPackage

Удаляем приложение office из Windows 10
Get-AppxPackage *office* | Remove-AppxPackage

Microsoft.AAD.BrokerPlugin
Microsoft.Windows.CloudExperienceHost
Microsoft.Windows.Cortana
Windows.PrintDialog
HoloShell
Windows.ContactSupport
Microsoft.XboxGameCallableUI
CortanaListenUIApp
Microsoft.Windows.ParentalControls
Microsoft.Windows.HolographicFirstRun
Microsoft.BioEnrollment
Microsoft.Messaging
Microsoft.MicrosoftStickyNotes

Scroll to top