Allows to unpack and repack AMLogic images for Android 7 without the Customization Tool - natinusala/linux-amlogic-toolkit
Mise à jour du 06 juillet 2017 : Prise en compte des différents retours et de la version « Creators Update » 1703.
—-
À la date d’écriture de cette note et selon les informations rendues publiques par Microsoft, plusieurs données sont collectées et corrélées entre elles sous Windows 10. Les données recueillies peuvent être stockées et traitées dans tout pays dans lequel Microsoft, ses filiales ou prestataires de service sont implantés.
Les recommandations présentées dans ce document permettent de guider le lecteur dans la configuration de son système d’exploitation pour limiter les données recueillies par l’éditeur. Bien entendu, il est du ressort de chaque entité d’apprécier son propre besoin en matière de confidentialité des données, idéalement par une analyse de risques (menée par exemple avec la méthode EBIOS) dont les conclusions doivent permettre de prendre une décision au plus haut niveau.
I believe the command you are looking for is:
sc config servicenamehere start= auto
You'll need to know the name of the service though - to view this from the command line, try this command - this will show all services:
sc query type= service state= all
If you want to see only stopped services, run this command:
sc query type= service state= inactive
The list of services output by the query can be quite long. You may filter it by using findstr (see post here) . For example
sc query type= service state= all | findstr "ssh"
Will select the output lines of the services list that contain the string "ssh"
Note: For some services you may need also administrator privileges, you will notice it on getting the message Access is denied after executing the sc command. In that case open the Command Prompt (Admin) by pressing 'Windows + X' keys.
You can move the entire C:\Users folder to a different drive pretty easily after windows is installed:
Boot to the installation media, and get to the command prompt (I believe you need to click repair first)
Use Robocopy to copy C:\Users to D:\Users: robocopy c:\Users d:\Users /mir /xj /copyall
...:. a. /mir tells robocopy to mirror the directories, this will copy all files and permissions
...:. b. /xj is very important, this tells robocopy not to follow junction points. If you forget this, you will have a lot of trouble.
...:. c. /copyall will copy all the attributes includings ACL and Owner info
Verify that the files successfully copied
Delete c:\Users
Create junction that points to d:\Users: mklink c:\Users d:\Users /j
That's it. I've been using this process since Vista went RTM with no problems.
To more easily integrate restic with automatic VSS creation I wrote a Windows PowerShell script that can be run to automate this without the complications mentioned above. It is available in the attached zip:
restic-backup-windows-vss.zip
If restic has a repository for external scripts but perhaps it could be included there.
The meat of the script is in these lines excerpted from the script (omitting the config part):
$ShadowPath = $rootVolume + 'shadowcopy\'
$s1 = (Get-WmiObject -List Win32_ShadowCopy).Create($rootVolume, "ClientAccessible")
$s2 = Get-WmiObject Win32ShadowCopy | Where-Object { $.ID -eq $s1.ShadowID }
$device = $s2.DeviceObject + "\"
cmd /c mklink /d $ShadowPath "$device"
ForEach ($folderToBackup in $foldersToBackup) {
cmd /c $resticExe backup -r $resticRepository ($ShadowPath + $folderToBackup)
}
$s2.Delete()
cmd /c rmdir $ShadowPath
#To install openssh with ssh daemon
choco install openssh -params '"/SSHServerFeature"' -y
#To enable ssh keyauth
Restart Windows
#To setup ssh keys
https://github.com/PowerShell/Win32-OpenSSH/wiki/ssh.exe-examples
cd ~
ssh-keygen.exe -t rsa -f id_rsa
copy id_rsa.pub .ssh\authorized_keys
format aaaa-mm-jj
echo %date:~6,4%-%date:~3,2%-%date:~0,2%
Recently, Microsoft has released an early version of OpenSSH for Windows. You can use the package to set up an SFTP/SSH server on Windows.
Cet article va vous expliquer comment installer et configurer un serveur ssh sous Windows.
Borg Backup - unofficial Windows releases
Created by Billy Charlton
GPG key fingerprint: EC2B 7E69 BDA3 F260 8396 3E41 40ED 1F77 9784 BBF0
Installer le service SSH sous Windows grâce à Cygwin et un tutoriel d'Oracle...
merci ;)
Je viens de découvrir cette application !!
avec le plugin skype for business et le web search je me sens beaucoup plus productif
Alt+Espace puis wiki "ce que je veux" va chercher "ce que je veux" sur wikipédia.
je me suis ajouter mon Searx ;)
et si je veux parler à un collègue:
sk "nom du collègue" et voila ;) (j'ai changé le raccourci du module skype)
remplacement de launchy beaucoup plus complet et activement mis à jour ;)
un bon package avec du X86 Atom et tout le necessaire
peut faire tourner linux et/ou windows
pour pouvoir mettre à jour votre build insider si vous aviez fait "machine arrière"
If you previously had a new Windows 10 preview build installed in your computer and then you reverted back to an older build, you'll lose access to the new build and it'll no longer be offered as an upgrade option. If you want to install that build again, deleting that build number from the list at HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsSelfHost\Applicability\RecoveredFrom key in Registry Editor will restore the ability to upgrade. Thanks to our reader "thedicemaster" for this info...
Comment faire pour activer ou désactiver les protocoles SMB sur le client SMB
Windows Vista, Windows Server 2008, Windows 7, Windows Server 2008 R2, Windows 8 et Windows Server 2012
Remarque Lorsque vous activez ou désactivez SMBv2 dans Windows 8 ou Windows Server 2012, SMBv3 est également activée ou désactivée. Ce problème se produit car ces protocoles partagent la même pile.
Pour désactiver le SMBv1 sur le client SMB, exécutez les commandes suivantes :
SC.exe config lanmanworkstation depend = bowser/mrxsmb20/nsi
SC.exe config mrxsmb10 start = disabled
Pour activer la SMBv1 sur le client SMB, exécutez les commandes suivantes :
sc.exe config lanmanworkstation depend= bowser/mrxsmb10/mrxsmb20/nsi
SC.exe config mrxsmb10 start = auto
Pour désactiver SMBv2 et SMBv3 sur le client SMB, exécutez les commandes suivantes :
sc.exe config lanmanworkstation depend= bowser/mrxsmb10/nsi
SC.exe config mrxsmb20 start = disabled
Pour activer SMBv2 et SMBv3 sur le client SMB, exécutez les commandes suivantes :
sc.exe config lanmanworkstation depend= bowser/mrxsmb10/mrxsmb20/nsi
sc.exe config mrxsmb20 start= auto
vous êtes un hacker vous avez juste un téléphone...
à vous de jouer...
Les premières bases en script powershell
Configure sshd on MSYS2 and run it as a Windows service
It provides Windows NT4.0/2000/XP/Vista/7/8/8.1/Server 2003/2008/2008 R2/2012/2012 R2 with full access to Linux Ext2 volumes (read access and write access). This may be useful if you have installed both Windows and Linux as a dual boot environment on your computer.
The "Ext2 Installable File System for Windows" software is freeware.
diskpart
(puis faire entrer)
list volume
(puis faire entrer. N'oubliez pas l'espace entre list et volume)
Vous allez avoir un tableau, regardez quel lettre correspond à OS. Pour moi c'était C. Si ce n'est pas C pour vous, la ligne d'après va changer ;)
Tapez ensuite:
bcdboot c:windows /L fr-FR
(puis faire entrer)
Soit ça marche et vous pouvez restaurer votre système en fermant l'invité de commande et en recliquant sur actualiser le PC, puis restaurer.
Si ça vous affiche :
BFSVC Error: could not open the bcd template store. status = [C000000F]
Procédez de la manière suivante:
Tapez dans l'ordre:
attrib c:\boot\bcd -h -r -s
(puis faire entrer)
del c:\boot\bcd
(puis faire entrer)
bootrec /rebuildbcd
(puis faire entrer)
Normalement, il va réinstaller quelque chose et vous demander si vous voulez l'installer, il vous faudra taper la lettre "O" et faire entrer.
Fermez ensuite l'invité de commande.