Wednesday, March 22, 2017

windoews frced restarts



http://www.makeuseof.com/tag/disable-forced-restarts-windows-update/


With the AU key selected in the left pane, right-click in the right pane, point to New, and select DWORD (32-bit) value. Type NoAutoRebootWithLoggedOnUsers and press Enter to name the new value.

When the registry editor appears, navigate to the HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU registry key.
You’ll likely find that the last two parts of the key — the WindowsUpdate\AU parts — don’t yet exist. You’ll need to create them yourself.
To do so, right-click the Windows key, point to New, and select Key. Type WindowsUpdate and press Enter. Then, right-click the WindowsUpdate key, point to New, and select Key. Type AU and press Enter. This will create the correct registry key structure.
---
corporate
irst, open the Local Group Policy Editor. Press Windows Key + R to open the Run dialog, type gpedit.msc into the dialog box, and press Enter to open it
Navigate to the following folder in the left pane: Computer Configuration\Administrator Templates\Windows Components\Windows Update

In the right pane, double-click the “No auto-restart with logged on users for scheduled automatic update installations” setting. Set the setting to Enabled and click OK.

After changing this setting, either reboot your computer or run the gpupdate /force command in the way we mentioned above.




Tuesday, March 21, 2017

soft tools, forensic




soft tools,  clooning usb
http://www.osforensics.com/tools/write-usb-images.html





screen marker
https://www.reddit.com/r/runescape/comments/4iiwyw/screen_marker/
https://web.archive.org/web/20160125180759/http://www.screenmarker.com/


scrreen off

www.thewindowsclub.com/screenoff-turn-off-windows-laptop-screen


ftp
https://sourceforge.net/projects/filezilla/files/FileZilla_Client/3.25.1/FileZilla_3.25.1_win64-setup.exe/download

Monday, March 20, 2017

windowsi download asjad




https://www.windowsnews.nl/windows-10-build-15061-iso-and-language-packs/

Downloads Windows 10 build 15061:
Language packs X86 build 15061
Language packs X64 build 15061
Single Language Packs X86-X64 build 15061

Home version X86 build 15061
Pro Version X86 build 15061
Enterprise version X86 build 15061

Home version X64 build 15061
Pro Version X64 build 15061
Enterprise version X64 build 15061

Source: Microsoft
Also Check: Windows 10 Build 15061 Changelog here.



https://thewincentral.com/windows-10-version-1703-for-creators-update-seen-in-updated-msdn-documentation/







https://thewincentral.com/windows-10-version-1703-for-creators-update-seen-in-updated-msdn-documentation/




http://cilidb.com/page/CLIENTENTERPRISE/1-1-0.shtml

http://cilidb.com/page/15061.0.170315-1424/1-0-0.shtml (https://thepiratebay.org/torrent/17364681/Windows_10_Insider_Preview_Build_15061_AIO_x64_English_MUI)

(paha porri täis link, kas nad eelmmise lehe asju lihtsalt feimivad http://cilidaquan.me/cldq/CLIENTENTERPRISE/1-1-0.html ..siin sama http://feifeibt.com/search/c_bxdPULAaGggCDPYFcA/1/1/0.html )


...
https://betanews.com/2017/03/15/windows-10-creators-update-build-15048-iso-images-available-now/

https://www.neowin.net/news/windows-10-build-15055-finally-shows-the-version-number-as-1703

-----------


https://www.microsoft.com/et-ee/software-download/windows10ISO


https://www.thecollectionbook.info/builds/

--

Teid suunati sellele lehele, kuna teie kasutatav operatsioonisüsteem ei toeta Windows 10 kandja loomise tööriista ja soovime aidata teil Windows 10 alla laadida. Kandja loomise tööriista kasutamiseks minge Microsofti tarkvara allalaadimise Windows 10 lehele Windows 7, Windows 8.1 või Windows 10-ga seadmes.
Sellelt lehelt saate alla laadida kettatõmmise (ISO-fail), mida saab kasutada Windows 10 installimiseks ja uuesti installimiseks. Tõmmisega saab ka luua USB-mäluseadmel või DVD-l põhineva installikandja.

---


https://www.microsoft.com/et-ee/windows/windows-10-specifications?OCID=win10_null_vanity_win10specs


"Windows Media digitaalõiguste haldus (WMDRM) ei ole pärast Windows 10 aastapäevavärskenduse (Windows 10, versioon 1607) installimist toetatud. Pärast värskenduse installimist ei saa te enam esitada muusika- ega videofaile, mis on selle õiguste halduse tehnoloogiaga kaitstud. Klõpsake siin, et saada lisateavet."


--
http://www.askvg.com/new-update-build-of-windows-10-technical-preview-now-available-for-download/

--

http://sihmar.com/download-windows-10-build-15061-iso-esd-files/
 https://cloud.mail.ru/public/DJ5E/eFY1cvJVQ/


 

eesti linuxc asjad






eesti linuxi asjad
https://wiki.itcollege.ee/index.php/Ubuntu_Estonian_Remix

http://upload.itcollege.ee/ubuntu-estonian-remix/

https://github.com/estobuntu/ubuntu-estonian-remix

http://juhend.estobuntu.org/alustus/14.04/

https://github.com/open-eid/






https://pingviin.org/ftopic10276-0-asc-40.html

Tuesday, March 14, 2017

Scrolling text




https://www.nosegraze.com/scrolling-text-box/
  1. Some themes might have a “Custom CSS” box in the settings panel. You can paste it there.
  2. If you have Jetpack installed, you should have a section in Appearance » Edit CSS where you can paste custom CSS code.
  3. Or, you can install and activate the Simple Custom CSS plugin, which will add a new menu under Appearance for custom CSS.
Here’s the actual code you want to add:
.scroll-box {
    height: 400px; /* maximum height of the box, feel free to change this! */
    overflow-y: scroll;
}
 
 
 
If you want, you can also add some extra styling to add a background colour or border. Here are some simple, extra styles:

.scroll-box { background: #f4f4f4; border: 2px solid rgba(0, 0, 0, 0.1); height: 400px; /* maximum height of the box, feel free to change this! */ padding: 15px; overflow-y: scroll; }
 
 
 
Next add that to blog:
<div class="scroll-box">

<p>Your excerpt goes in here!</p>

</div>