23%
20.03.2014
:\Program Files (x86)\Windows Kits\8.0\bin\x64 directory. You can create a certificate like this:
makecert.exe -r -pe -nCN= -ssmy -sr localmachine-eku \
1.3.6.1.5.5.7.3.2 -len 2048 -e01
23%
10.04.2015
[...]
20 String line = readlineImpl(prompt);
21 if ((line != null) && (addToHist)) {
22 addToHistory(line);
23 }
24 return line;
25 }
26
27 public static void add
23%
09.10.2017
program (e.g., PuTTY), you connect to the server on port 22 with the reserved IP address. The default username is pi
, and the default password is raspberry
(Figure 1). Now enter
sudo nems
23%
06.10.2019
to the rule. As the Destination
, select the IP address of the VM; now the rule is as specific as possible. As Destination ports
, you can specify 3368, 22
for the two services Remote Desktop Protocol (RDP
23%
09.06.2018
List 'install YourService "C:\Windows\System32\WindowsPowerShell\v1.0\PowerShell.exe" "-command "& { .D:\Scripts\discheck.ps1}"" ' -NoNewWindow -Wait
The PowerGUI editor offers the option to compile a script
23%
04.08.2020
21 # The name and age of the persons who know the person with ID 1:
22 gremlin> g.V(1).outE('knows').inV().valueMap('name', 'age')
23 ==>[name:[vadas],age:[27]]
24 ==>[name:[josh],age:[32]]
25
26
23%
04.04.2023
continue with the
acorn run -n lm-test .
command, which creates a container with the content of the local directory in Kubernetes named lm-test, or you can decide to make a genuine, distributable image
23%
17.09.2013
Windows SSH client PuTTY, developed by Simon Tatham, is also a free SSH implementation. It is subject to the MIT license and is currently at version 0.62 from 2011. All versions of SSH are largely
23%
17.06.2017
, classical cluster filesystems such as GFS2 [22] or OCFS2 [23] are also suitable for this purpose. However, the industry is increasingly losing interest in these two filesystems, which makes their futures
23%
06.08.2013
.fetch(msgid, '(UID)')
043 match = REUID.match(data[0])
044 msguid = match.group('uid')
045 logging.debug("Found UID %s" % ( msguid ))
046 result = imap.uid('COPY', msguid, targetfolder)
047