Skip to main content

Posts

Showing posts from July, 2023

[Synology] old file folder auto delete

1.  open your text editor 2.  Directory remove for 3 days ago at "/volume1/recording"  #!/bin/sh find "/volume1/recording"- type d -mtime +3 -exec rm -rf{} \; for 50 days ago #!/bin/sh find "/volume1/recording"- type d -mtime +50 -exec rm -rf{} \; 3. File remove for 3 days ago #!/bin/sh find "/volume1/recording"- type f -mtime +3 -exec rm -rf{} \; 4. Save file as "auto_del.sh" sh file is for script.  5. Synology control panel - job scheduler - user defined script add here. 

[Sharepoint]"Your changes could not be saved" error message. File locking wifh office files(Excel, docs, Power point) Sharepoint Online Document stuck "open" by a user. No other user can access.

"Your changes could not be saved" error message  PROBLEM: Sharepoint office files are stuck "open" by a user. No other user can access. sharepoint save file can not open for awhile. SharePoint thinks a user still has a lock on.  I can't administratively do anything with the file online.  This has been going on for almost a day. We've cleared cache, closed Excel on his computer, cleared out some local cache directories, rebooted, etc. Nothing is clearing up this lock. It took 1 hours to release. Also many different symptoms when saving on lock issue. CAUSE:  web client service add lock on the file RESOLUTION:  since no need for checkout/checkin, add below registry to disable the lock function of web client service but keep all other functions like explorer view support                                 HKLM\SYSTEM\CurrentControlSet\Services\WebClient\Parameters\SupportLocking=0 Registry...

[SharePoint] Versioning Settings menu location for sharepoint 2013

  https://support.microsoft.com/en-gb/office/enable-and-configure-versioning-for-a-list-or-library-1555d642-23ee-446a-990a-bcab618c7a37#OfficeVersion=2016,_2013 1. From top menu Select "PAGE" 2. Select "Library Settings" 3. Select "Versioning settings" 4. Versioning Settings are listed.