Les Partages de Memiks
Tag cloud
Picture wall
Daily
RSS Feed
  • RSS Feed
  • Daily Feed
  • Weekly Feed
  • Monthly Feed
Filters

Links per page

  • 20 links
  • 50 links
  • 100 links

Filters

Untagged links
page 2 / 5
81 results tagged windows  ✕
linux-amlogic-toolkit/README.md at master · natinusala/linux-amlogic-toolkit · GitHub https://github.com/natinusala/linux-amlogic-toolkit/blob/master/README.md
Thu Oct 11 10:21:01 2018 archive.org
QRCode
thumbnail

Allows to unpack and repack AMLogic images for Android 7 without the Customization Tool - natinusala/linux-amlogic-toolkit

amlogic windows partition
Restreindre la collecte de données sous Windows 10 | Agence nationale de la sécurité des systèmes d'information https://www.ssi.gouv.fr/entreprise/guide/restreindre-la-collecte-de-donnees-sous-windows-10/
Wed Sep 26 15:42:23 2018 archive.org
QRCode
thumbnail

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.

ansi collecte donnees windows 10
How do I enable services on a Windows computer via a command line? - Super User https://superuser.com/questions/175077/how-do-i-enable-services-on-a-windows-computer-via-a-command-line
Mon Jun 25 15:33:53 2018 archive.org
QRCode
thumbnail

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.

windows service command line
[Win 7] Déplacer le répertoire "utilisateurs" ? - Windows et les logiciels sous Windows - Forums BHmag.fr http://www.bhmag.fr/forum/topic/26342-win-7-d%C3%A9placer-le-r%C3%A9pertoire-utilisateurs/
Tue May 15 23:11:58 2018 archive.org
QRCode
thumbnail

You can move the entire C:\Users folder to a different drive pretty easily after windows is installed:

  1. Boot to the installation media, and get to the command prompt (I believe you need to click repair first)

  2. 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

  1. Verify that the files successfully copied

  2. Delete c:\Users

  3. 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.

windows users folder
Add support for VSS (windows) · Issue #340 · restic/restic · GitHub https://github.com/restic/restic/issues/340
Mon May 7 14:28:17 2018 archive.org
QRCode
thumbnail

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\'

Create a volume shadow copy and make it accessible

$s1 = (Get-WmiObject -List Win32_ShadowCopy).Create($rootVolume, "ClientAccessible")
$s2 = Get-WmiObject Win32ShadowCopy | Where-Object { $.ID -eq $s1.ShadowID }
$device = $s2.DeviceObject + "\"

Create a symbolic link to the shadow copy

cmd /c mklink /d $ShadowPath "$device"

Run Restic on the data files in the shadowcopy

ForEach ($folderToBackup in $foldersToBackup) {
cmd /c $resticExe backup -r $resticRepository ($ShadowPath + $folderToBackup)
}

Delete the shadow copy and remove the symbolic link

$s2.Delete()
cmd /c rmdir $ShadowPath

restic windows backup
Install Open SSH on Windows with Chocolatey http://oracledbtales.blogspot.fr/2017/03/install-open-ssh-on-windows-with.html
Wed May 2 15:04:06 2018 archive.org
QRCode

#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

chocolatey ssh windows
Batch : Afficher la date et l'heure dans un script (partie 1) - ProgMatique http://www.progmatique.fr/article-122-Batch-date-heure.html
Sat Feb 17 22:43:57 2018 archive.org
QRCode
thumbnail

format aaaa-mm-jj
echo %date:~6,4%-%date:~3,2%-%date:~0,2%

bat windows date
Installing SFTP/SSH Server on Windows using OpenSSH :: WinSCP https://winscp.net/eng/docs/guide_windows_openssh_server
Fri Jun 23 17:40:33 2017 archive.org
QRCode
thumbnail

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.

ssh windows server tutorial
Réseaux - Installation d'un serveur ssh sous Windows http://www.commentcamarche.net/faq/2132-reseaux-installation-d-un-serveur-ssh-sous-windows
Fri Jun 23 17:38:20 2017 archive.org
QRCode
thumbnail

Cet article va vous expliquer comment installer et configurer un serveur ssh sous Windows.

ssh server windows tutorial
Borg Backup - unofficial Windows releases https://github.com/billyc/borg-releases
Fri Jun 23 17:34:46 2017 archive.org
QRCode

Borg Backup - unofficial Windows releases

Created by Billy Charlton
GPG key fingerprint: EC2B 7E69 BDA3 F260 8396 3E41 40ED 1F77 9784 BBF0
borgbackup serveur windows release
Installing Cygwin and Starting the SSH Daemon https://docs.oracle.com/cd/E24628_01/install.121/e22624/preinstall_req_cygwin_ssh.htm#EMBSC150
Mon Jan 30 22:13:49 2017 archive.org
QRCode
thumbnail

Installer le service SSH sous Windows grâce à Cygwin et un tutoriel d'Oracle...

merci ;)

ssh cygwin windows oracle
Wox http://www.getwox.com/
Tue Jan 17 23:26:00 2017 archive.org
QRCode
thumbnail

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 ;)

launchy wox open source recherche windows skype plugin
UP-4GB-64GB-PACK-PLUS - UP Board http://up-shop.org/home/76-up-2gb-16gb-pack-plus.html
Tue Jan 3 22:26:43 2017 archive.org
QRCode
thumbnail

un bon package avec du X86 Atom et tout le necessaire
peut faire tourner linux et/ou windows

windows atom linux x86 package
[Fix] New Insider Preview Builds of Windows 10 Not Showing on Windows Update - AskVG http://www.askvg.com/fix-windows-10-insider-preview-build-10240-not-appearing-on-windows-update/
Thu Dec 22 23:32:44 2016 archive.org
QRCode
thumbnail

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...

windows insider build
Comment activer et désactiver SMBv1, SMBv2 et SMBv3 dans Windows Vista, Windows Server 2008, Windows 7, Windows Server 2008 R2, Windows 8 et Windows Server 2012 https://support.microsoft.com/fr-fr/kb/2696547
Mon Dec 19 16:57:55 2016 archive.org
QRCode
thumbnail

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
samba windows share
Supercontinent Ltd by Deconstructeam https://deconstructeam.itch.io/supercontinent-ltd
Wed Sep 28 23:50:09 2016 archive.org
QRCode
thumbnail

vous êtes un hacker vous avez juste un téléphone...

à vous de jouer...

telephone hacker jeu indé windows
Comment exécuter un script PowerShell - SysKB http://syskb.com/comment-executer-un-script-en-powershell/
Mon Sep 12 17:45:54 2016 archive.org
QRCode
thumbnail

Les premières bases en script powershell

powershell windows script extension ps1
Configure sshd on MSYS2 and run it as a Windows service https://gist.github.com/samhocevar/00eec26d9e9988d080ac
Wed Jan 13 23:27:42 2016 archive.org
QRCode
thumbnail

Configure sshd on MSYS2 and run it as a Windows service

sshd windows msys2
Ext2 IFS For Windows http://www.fs-driver.org/
Tue Jan 12 16:08:36 2016 archive.org
QRCode
thumbnail

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.

windows ext2 fs ifs
Impossible de réparer windows 8 ! http://www.commentcamarche.net/forum/affich-28217024-impossible-de-reparer-windows-8
Sun Dec 13 05:44:36 2015 archive.org
QRCode
thumbnail
  • Au lieu de prendre actualiser le PC ou Formater, choisir Option Avancés, puis invité de commande
  • Tapez dans l'ordre:

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.

windows 10 dépannage lecteur verrouillé
page 2 / 5
4759 links, including 1673 private
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Theme by kalvn