31 Ocak 2020 Cuma

robocopy

robocopy <Source> <Destination> [<File>[ ...]] [<Options>]

example:
robocopy Source Destination /E /COPY:DATSOU /R:10 /W:3 /ZB /NP /TEE /LOG+:D:\FileCopy01.log

/e                 Copies subdirectories. Note that this option includes empty directories.
/copyall       Copies all file information (equivalent to /copy:DATSOU).
/r:<N>         Specifies the number of retries on failed copies. 
/w:<N>       Specifies the wait time between retries, in seconds.
/zb               Uses restartable mode. If access is denied, this option uses Backup mode.
/np               Specifies that the progress of the copying operation.
/tee              Writes the status output to the console window, as well as to the log file.

30 Ocak 2020 Perşembe

EMC DD / List & Delete SQL Backups

EMC DD üzerinde, 1 günden eski SQL backupları görüntülemek:

ddbmexptool -l -n mssql -z "C:\Program Files\DPSAPPS\MSAPPAGENT\config\ddconfig.cfg" -e "1 days ago"



EMC DD üzerinde, 15 günden eski SQL backuplarını silmek:

ddbmexptool -d -n mssql -z "C:\Program Files\DPSAPPS\MSAPPAGENT\config\ddconfig.cfg" -e "15 days ago"

7 Ocak 2020 Salı

VMware / Windows Server 2012 R2 - Access is denied

Windows Server 2012 R2 çalışan sistemde Access is denied hatası ile karşılaşıldığında.


Çözüm için linkte belirtilen düzenleme uygulanabilir.  https://kb.vmware.com/s/article/1012225
  1. Power off the virtual machine.
  2. Right-click the virtual machine and select Edit Settings.
  3. Click the VM Options tab.
  4. Click Advanced > Edit Configuration > Add Row.
  5. Insert a new row with the name devices.hotplug and a value of false.
  6. Power on the virtual machine.

Windows Server IIS üzerinden hizmet veren bir FTP servisine erişmek istediğimizde;  Internet Explorer, FileZilla vb. uygulamalar ile erişim ...