Dienstag, 27. März 2012

Windows 7 Volume Licence - Phone Activation

Windows 7 (32 bit und 64 bit, englisch) no online activation possible.
Error: 0xC004C020 "The activation server reported theta the Multiple Activation key has exceeded ist limit"

The phone activation was not shown in the tool.

Therefore start the activation tool by the "slui.exe 4" command.

Start
Run
slui.exe 4

Start the phone activation.

At phone
2,1,1
Type in a lot of numbers

Freitag, 23. März 2012

WebDav Ubuntu 11.10
Create Folder for WebDav

http://www.SemperVideo.de

http://www.youtube.com/watch?v=wGgFY80YigA

http://www.youtube.com/watch?v=Da7pnDu0I6E

Install Apache Webserver:
sudo apt-get apache2

Module for WebDav:
sudo a2enmod dav
sudo a2enmod dav_fs

Create Folder in Web Home for WebDav:
mkdir /var/www/davhome

sudo chgrp www-data /var/www/davhome/
sudo chmod 775 /var/www/davhome/

Create user davuser1 and password file
sudo htpasswd -c /var/www/davhome/.DAVlogin davuser1
New password:***
Re-type new password:***

Configure dav_fs.conf
sudo nano /etc/apache2/mods-enabled/dav_fs.conf

---Nano dav_fs.conf---
(...)
#DavMinTimeout 600
§Location /davhome/§
Dav on
AuthType Basic
AuthName davuser1
AuthUserFile /var/www/davhome/.DAVlogin
§LimitExcept OPTIONS§
Require user davuser1
§/LimitExcept§
§/Location§

----Nano---

Notes:
§ = angle brackets, in this blog I can not write xml brackets
§LimitExcept OPTIONS§--- Required Password for Reading and Writing
§LimitExcept GET OPTIONS§--- Required Password for Writing
§LimitExcept GET PUT OPTIONS§--- No Password requried

Restart Apache:
sudo /etc/init.d/apache2 restart