Kayıtlar

How to install .NET Framework 3.5 on Windows Server 2012 and Windows Server 2012 R

If you have an application that you want to run on  Windows Server 2012  that requires the .NET Framework 3.5, you will most likely run in to a problem when trying to install it. If you are trying to install .NET Framework 3.5 from the  Server Manager  GUI, you will see this when installing the feature: “Do you want to specify an alternate source path? One or more installation selections are missing source files…” To solve this, you can either: 1. Go to a command prompt and enter this: dism /online /enable-feature /featurename:NetFX3 /all /Source:d:\sources\sxs /LimitAccess Note: Source should be the Windows installation disc. In my case, this was located on D: 2. Go down to “Specify an alternate source path” and enter “d:\sources\sxs” as the path.

Maintain permissions while migrating to a new server

q: What's the best way to copy all the files from an old server to a new one while maintaining permissions? a: We've found robocopy is the best to accomplish that.  Here is a sample format we have used repeatedly with success. robocopy \\fileserver\users D:\ServerFolders\Users /E /DCOPY:T /SEC /MT /V /TEE /NP /LOG:20150514_Ddrive.log

PSExec is my friend

Agent doesn’t recieve the policies well? He keeps saying that already has the latest version of all products (DAT) but the Properties tell the opposite? Some times the ‘Send Agent’ doesn’t work that well, and since I love verbosity… I slam the framepkg.exe on them: psexec.exe \\HOST_or_IP -u DOMAIN\USERNAME -p PASSWORD -c -f framepkg.exe /ForceInstall /Install=Agent /silent By the way, if the instalation is successful, the computer object (nodename) will be recreated into Lost&Found with a new AGENTGuid, meaning, a duplicate. Just delete the old one.

Shrink Database Log files (Full recovery mode)

USE Database_name; GO – Truncate the log by changing the database recovery model to SIMPLE. ALTER DATABASE Database_name SET RECOVERY SIMPLE; GO – Shrink the truncated log file. DBCC SHRINKFILE (Database_name_log); GO – Reset the database recovery model. ALTER DATABASE Database_name SET RECOVERY FULL; GO

Ubuntu’da vsftpd Kurulumu ve Konfigürasyonu

Öncelikle IP’mizi kullanarak SSH kabuğuna erişim gerçekleştiriyoruz. İlk olarak FTP sunucumuzda birden fazla kullanıcı oluşturup bunlara şifreler ve dizinler oluşturacağımız için PAM ve Apache kurmalıyız.  Vsftpd, PAM ve Apache’yi indirmek için: apt-get install vsftpd libpam-pwdfile apache2-ultis Böylece Vsftpd, PAM ve Apache’yi sistemimize kuruyoruz. Vsftpd dosyasında değişiklikler yapacağımız için, ne olur ne olmaz diyerek config dosyamızın yedeğini alalım; mv /etc/vsftpd.conf /etc/vsftpd.conf.yedek Vsftp dosyamızın config dosyasının adını değiştirdikten sonra asıl üzerinde düzenlemeler yapacağımız config dosyasını oluşturuyoruz; nano /etc/vsftpd.conf Siz nano yerine vim gibi başka bir editörü kullanabilirsiniz. Gerekli dosyayı oluşturduktan sonra aşağıda ki komutları dosyaya yazıyoruz; listen=YES anonymous_enable=NO local_enable=YES write_enable=YES local_umask=022 nopriv_user=vsftpd virtual_use_local_privs=YES guest_enable=YES local_root=/home/$USER user_sub_to...

Microsoft Lync keychain password prompt on login

Resim
One of my users ran into an issue recently when launching Microsoft Lync. When the Lync application logged into the Lync server, a  Microsoft Lync wants to use OC_KeyContainer_username@company.com. Please enter the keychain password prompt appeared. The curious thing was that the keychain prompt would not accept the user’s current login password. When I checked, the user’s login keychain was unlocked and using the current password, so it didn’t appear to be caused by the login keychain password issues that I normally deal with. After some research, I was able to find the answer and get this issue fixed. See below the jump for the details. The fix: 1. Quit out of Microsoft Lync 2. Go to  /Users/username/Library/Keychains 3. Remove the  OC_KeyContainer__username@company.com  file from /Users/username/Library/Keychains . 4. Launch Microsoft Lync 5. On relaunch, the prompt no longer appeared. What caused the password prompt?: Microsoft ...

IIS7 HTTP isteklerini HTTPS sayfasına Yönlendirmek

Resim
IIS7'de HTTP isteklerini HTTPS sayfasına Yönlendirmek IIS 7 de host ettiğiniz uygulamaya sadece https olarak erişilmesini istiyorsanız SSL sertifikanızı yükledikten sonra yapmanız gerekenler: 1. IIS Manager'dan ilgili uygulamayı çalıştıracağınız siteyi seçin , featureview de "SSL Settings" e çift tıklayıp "Require SSL" seçeneğini aktif hale getirin. 2. Feature view'e dönüp bu kez "Error Pages" seçeneğine çift tıklayıp açılan sayfada sağdan "Add" linkine tıklayın, gelen pencerede "Status Code" bölümüne 403.4 yazın ve en alttaki "Respond with a 302 redirect" seçeneğini seçip aktif olan bölüme sayfanızın yönlendirilmesini istediğiniz https sayfa linkini yazın ( örn:  https://aaa.bbb.com/ ) ve OK e basın.