UCCX: script to automatically delete recordings

Ever since we upgraded form 8.0.2SU2 to 8.0.2SU3, we noticed that Cisco disabled file deletion rights for the uccxrecording account. In SU2, we could psftp to the server and automate download of the files and deletetion of the files. In SU3, uccxrecording doesn't have rights to delete recordings.
The only way is to manually SSH as admin and issue "utils uccx recordings purge". I don't think I need to mention how inconvinient this change was. I tried using plink to automatically SSH to the server to issue this command, but because of how Cisco OS Unix Shell is designed it doesn't work.
Has anyone found any other solution? (apart from going with CR software)

I have the same issue, I managed to automatically save my recordings and manually delete them. Have you found any way to query the available space and automate this task?

Similar Messages

  • Script for automatic delete of archive logs/redologs

    Hi Experts,
    Do you have any idea on how to create a shell script. Actually the function of it, is to automatically deletes the archive logs/redologs if reaches the limit. Or is there any parameter to change to set the automatic deletion of archive logs/redologs.
    Regards

    Hi,
    at first, archivelogs should always be saved to tape before you delete them. If you don't want to backup them, may be for a test system, you can suppress them in ORACLE instead to delete them later.
    You can run the database in "NOARCHIVE LOG MODE". If you do so, the online redologs are not archived, they are still reused and overwritten. You can not run an online Backup, when the database is in noarchive log mode. If you want to backup the database, you have to run an offline backup.
    Do not use the NOARCHIVE LOG MODE for production or developemet systems.
    To change the archive log mode:
    shutdown the database
    startup mount;
    alter database noarchivelog;
    alter database open;
    archive log list       will show the actual status
    regards Ulrich

  • HT2905 Is there a way to automatically delete exact duplicates in iTunes 11

    Has anyone found a way to automatically delete Exact Duplicates from iTunes 11.  As I read the instructions, it can only be done by comparing the songs with the same title, making sure that it is the same album, etc.  Then I have been going through the duplicates and pressing CTRL in Windows to select the next duplicate song to delete.  I have a very large library and this is going to take hours.
    I guess I didn't get the instructions correctly when I backed up my Library to move from an old laptop to a new one.  I am going to have to go back and read those again because this brand new HP is having problems like the past few that I have received from HP.  I will never recommend an HP Product, I can tell you that.
    Thanks to all for reading this and I hope someone has an answer to automate it.

    When deduping use Shift > View > Show Exact Duplicate Items as this is normally a more useful selection. You need to manually select all but one of each group to remove. Sorting the list by Date Added may make it easier to select the appropriate tracks. If you have multiple entries in iTunes connected to the same file on the hard drive then don't send to the recycle bin. Use my DeDuper script if you're not sure, don't want to do it by hand, or want to preserve ratings, play counts and playlist membership. See this thread for background and please take note of the warning to backup your library before deduping.
    (If you don't see the menu bar press ALT to show it temporarily or CTRL+B to keep it displayed)
    See also HT2905: How to find and remove duplicate items in your iTunes library.
    (Duplicate link)
    If you still have the original library on the old laptop see this  migrate iTunes library post. It may be easier and/or better to redo the transfer...
    tt2

  • Using a script to automate UNC definition updates for FEP 2010

    Hi all,
    I tested the script mentioned in this article
    http://blogs.technet.com/b/clientsecurity/archive/2010/09/16/using-a-script-to-automate-unc-definition-updates.aspx with no success. I am getting the following error:
    Line: 11
    Char: 5
    Error: The operation timed out
    Code: 80072EE2
    Source: WinHttp.WinHttpRequest
    the script content is as follows:
    strMSEx86URL = "http://go.microsoft.com/fwlink/?LinkID=121721&clcid=0x409&arch=x86"
    strMSEx86Location = "D:\defs\Updates\x86\mpam-fe.exe" 
    strNISX86URL = "http://go.microsoft.com/fwlink/?LinkId=197095" 
    strNISX86Location = "D:\defs\Updates\x86\nis_full.exe" 
    strMSEx64URL = "http://go.microsoft.com/fwlink/?LinkID=121721&clcid=0x409&arch=x64" 
    strMSEx64Location = "D:\defs\Updates\x64\mpam-fe.exe" 
    strNISX64URL = "http://go.microsoft.com/fwlink/?LinkId=197094" 
    strNISX64Location = "D:\defs\Updates\x64\nis_full.exe"
    Set objWINHTTP = CreateObject("WinHttp.WinHttpRequest.5.1")  
        objWINHTTP.open "GET", strMSEx86URL, false  
        objWINHTTP.send
    If objWINHTTP.Status = 200 Then
    Set objADOStream = CreateObject("ADODB.Stream")
       objADOStream.Open
      objADOStream.Type = 1 'adTypeBinary
    objADOStream.Write objWINHTTP.ResponseBody
    objADOStream.Position = 0 'Set the stream position to the Start
    Set objFSO = Createobject("Scripting.FileSystemObject") 
        'check if file exists if so delete 
        If objFSO.Fileexists(strMSEx86Location) Then objFSO.DeleteFile strMSEx86Location
    objADOStream.SaveToFile strMSEx86Location 
    objADOStream.Close
    end if
    Anybody can help?

    This is the script that I use and it works:
    strMSEx86URL = "http://go.microsoft.com/fwlink/?LinkID=121721&clcid=0x409&arch=x86" 
    strMSEx86Location = "C:\defs\Updates\x86\mpam-fe.exe" 
    strNISX86URL = "http://download.microsoft.com/download/DefinitionUpdates/x86/nis_full.exe" 
    strNISX86Location = "C:\defs\Updates\x86\nis_full.exe" 
    strMSEx64URL = "http://go.microsoft.com/fwlink/?LinkID=121721&clcid=0x409&arch=x64" 
    strMSEx64Location = "C:\defs\Updates\x64\mpam-fe.exe" 
    strNISX64URL = "http://download.microsoft.com/download/DefinitionUpdates/amd64/nis_full.exe" 
    strNISX64Location = "C:\defs\Updates\x64\nis_full.exe"
    Set objWINHTTP = CreateObject("WinHttp.WinHttpRequest.5.1")  
        objWINHTTP.open "GET", strMSEx86URL, false  
        objWINHTTP.send
    If objWINHTTP.Status = 200 Then 
    Set objADOStream = CreateObject("ADODB.Stream") 
        objADOStream.Open 
        objADOStream.Type = 1 'adTypeBinary 
        objADOStream.Write objWINHTTP.ResponseBody 
        objADOStream.Position = 0 'Set the stream position to
    Set objFSO = Createobject("Scripting.FileSystemObject") 
        'check if file exists if so delete 
        If objFSO.Fileexists(strMSEx86Location) Then objFSO.DeleteFile(strMSEx86Location)
    objADOStream.SaveToFile strMSEx86Location 
    objADOStream.Close
    End IF
    Set objWINHTTP = CreateObject("WinHttp.WinHttpRequest.5.1")  
        objWINHTTP.open "GET", strNISx86URL, false  
        objWINHTTP.send
    If objWINHTTP.Status = 200 Then 
    Set objADOStream = CreateObject("ADODB.Stream") 
        objADOStream.Open 
        objADOStream.Type = 1 'adTypeBinary 
        objADOStream.Write objWINHTTP.ResponseBody 
        objADOStream.Position = 0 'Set the stream position to
    Set objFSO = Createobject("Scripting.FileSystemObject") 
        'check if file exists if so delete 
        If objFSO.Fileexists(strNISx86Location) Then objFSO.DeleteFile (strNISx86Location)
    objADOStream.SaveToFile strNISx86Location 
    objADOStream.Close
    END IF
    Set objWINHTTP = CreateObject("WinHttp.WinHttpRequest.5.1")  
        objWINHTTP.open "GET", strNISx64URL, false  
        objWINHTTP.send
    If objWINHTTP.Status = 200 Then 
    Set objADOStream = CreateObject("ADODB.Stream") 
        objADOStream.Open 
        objADOStream.Type = 1 'adTypeBinary 
        objADOStream.Write objWINHTTP.ResponseBody 
        objADOStream.Position = 0 'Set the stream position to
    Set objFSO = Createobject("Scripting.FileSystemObject") 
        'check if file exists if so delete 
        If objFSO.Fileexists(strNISx64Location) Then objFSO.DeleteFile (strNISx64Location)
    objADOStream.SaveToFile strNISx64Location 
    objADOStream.Close
    END IF
    Set objWINHTTP = CreateObject("WinHttp.WinHttpRequest.5.1")  
        objWINHTTP.open "GET", strMSEx64URL, false  
        objWINHTTP.send
    If objWINHTTP.Status = 200 Then 
    Set objADOStream = CreateObject("ADODB.Stream") 
        objADOStream.Open 
        objADOStream.Type = 1 'adTypeBinary 
        objADOStream.Write objWINHTTP.ResponseBody 
        objADOStream.Position = 0 'Set the stream position to
    Set objFSO = Createobject("Scripting.FileSystemObject") 
        'check if file exists if so delete 
        If objFSO.Fileexists(strMSEx64Location) Then objFSO.DeleteFile(strMSEx64Location)
    objADOStream.SaveToFile strMSEx64Location 
    objADOStream.Close
    END IF

  • Automatically delete emails in Mail for OS X

    I currently have Mail set up so that it automatically archives emails received beyond a certain date to my Time Capsule. However, I then have to go into my inbox and delete the ones that I no longer need.
    As such, is there any way of setting up Mail to automatically delete emails in my inbox, preferably a couple of days after my archive schedule so that they're not deleted before they can be archived! I note in Preferences that there is an option for Trash and Sent, but not the Inbox.
    Cheers.

    sure. see my post here
    http://discussions.apple.com/thread.jspa?messageID=7458169&#7458169
    one change to this link. Cronnix does not seem to be avalaible any more. you can make a launch daemon to periodically run the script using Lingon. or you can use automator to make an ical plugin out of it and run it periodically using ical.

  • Automatic deletion of old archive files and trace files

    I've got a database that must run 24x7 without being monitored by a DBA.
    Two questions:
    1. Is it possible to get Oracle to automatically delete and uncatalog old archive files?
    2. Is it possible to get Oracle to automatically delete old trace files located in udump and bdump?
    Thanks in advance

    1. When you say 'uncatalog old archives’ do you mean that your database is backed up using RMAN and a catalog? If this is the case then RMAN can delete the backed up archives for you. Just add 'delete input' to the end of the 'backup archive log...' line in your backup script.
    2. Oracle can't delete the trace files. Best way is to write a script that delete all files older than X days and schedule it to run every night.

  • How do I get Itunes to automatically delete nonexistant songs???

    How do I get Itunes to automatically delete nonexistant songs??? I am referring to the songs that remain on itunes after you change their name or directory or whatever. It takes too long to delete individual songs. Is there some sort of plug-in available? THANKS!!

    10000 responses and you didn't know there was a script that does this?
    It's a Windows specific script (not iTunes).
    On a Mac, we just use Applescript to do this type of stuff. I'm surprised you didn't know this.

  • Automatic deletion dashes or dots

    Hi,
    I have one question. Every week I make flyer (leaflet) with 120 products witch everyone have some price.
    The price must look like this.
    But in material from my employer, prices are formated like 1,25 or 1.36...
    I can automatically format this numbers via paragraph styles and GREP but I can't automatically delete dots.
    So my question is. Is it possible to automatically delete dots from this numbers? I want just copy this price from text document and paste it to the text frame. Everithing else must be automatic
    GREP:
    (indesign is in czech mutation)
    Thanks a lot.
    Sorry for my bad English.

    Other than a GREP style? Well, not automatically, but you could run a Find/Change on your document remove them all in one step. And you could conceivably use a script to automatically run that kind of Find/Change on your document, though that might be inadvisible (easy to screw up and lose track).

  • Will scripts run automatically ?

    If I shut down my Mac everynight(I live in a time zone 6 hours ahead of Eastern US time), will the scripts run automatically when I start it up the next morning...or...do I need a special utility application for this ?

    these scripts are not worth worrying about. you should just leave them alone. the OS does a very good job of running them all by itself. and they are all quite useless anyway. many people (apparently yourself included) seem to think that these periodic scripts are important maintenance tools and will make your system run better and faster. nothing can be further from the truth.
    *monthly scripts* :
    1. archive and recycle fax logs. have you used your mac as a fax machine lately?
    2. write accounting information (total uptime of every account) in the monthly.out log.
    That's IT. so unless you use your mac as a fax machine (do you, really?) you don't need to run monthly scripts. EVER.
    *weekly scripts*:
    in snow leopard they do one thing ONLY: rebuild whois database. it's only useful if you are a unix user and actually use the whois terminal command at least on occasion. I'll bet my bottom dollar you never have and never will. then you don't need to run the weekly scripts either. EVER.
    *daily scripts*
    they do several things
    1. clean up the logs from /Library/Logs/CrashReporter which are more than 60 days old. hardly an urgent task. and those logs are really very few unless your system is seriously messed up. you can go a year without deleting any and will collect a few MBs at the most.
    2. delete junk from /tmp directory that's more than 3 days old.
    This is done automatically on every reboot without any periodic scripts. if you don't reboot the computer then daily scripts will run *no matter* the schedule. if you don't sleep the computer at night they'll run at night. if you do sleep the computer at night they will run first thing in the morning when the computer is turned on. again, zero need to reschedule anything.
    3. deletes files older than 7 days from /var/rwho. this is only relevant if you are running a unix network. otherwise there is nothing to delete - EVER.
    4. rotate accounting files. again, those are nonexistent unless you are a unix administrator.
    5. run the terminal command *df -l -h* and print out the output to daily.out. all this command does is list currently mounted hard drives. useless.
    6.print the current network status in daily.out. this is again just reporting not maintenance.
    7. Delete system messages. Once again this is relevant only for multi-user Unix systems.
    8. remove scratch fax files. see my comment above about using your mac as a fax machine.
    9. it writes some other accounting and system status info to daily.out. this is again only reporting and is ONLY actually present on unix networks.
    and that's all, folks.

  • Automatically delete row data on interactive report

    Hi All,
    I would like to know it's possible to automatically delete row data on interactive report when the check box is checked.
    I'm appreciating if you all can share your opinion or solution.
    Thanks a lot in advance!
    Best regards,
    Liz

    Hi,
    Why you like have checkbox ?
    Is it more clear for user have image/button like my example ?
    This is just example you need modify according your needs. Example do not have confirmation dialog.
    Page HTML header
    <script>
    function delIRRow(p_pk_val){
    var a = new htmldb_Get(null,null,'APPLICATION_PROCESS=DELETE_ROW');
    a.addParam('x01',p_pk_val);
    var r=a.get();
    if(!r=='1'){alert('Delete operation failed!');}else{gReport.search('SEARCH');}
    </script>On Demand process DELETE_ROW
    BEGIN
    delete from your_table where pk_col = APEX_APPLICATION.G_x01;
    htp.p('1');
    EXCEPTION WHEN OTHERS THEN
    htp.p('0');
    END;Change your_table and pk_col according your table name and pk column name.
    Call javascript from image/button (IR column link) or checkbox, and send primary key value as parametter
    Br,Jari
    Edited by: jarola on Jul 5, 2010 11:58 AM

  • Trash is automatically deleting

    My trash is automatically deleting, using server 10.6.8

    Could you provide some more detail?
    Does this behavior effect everybody, or just specific users?
    With served or local disks, or both?
    Any access or protection or ownership problems with the trash folder(s)?  (See this thread and this thread.)
    Any auto-delete tools installed or custom cron scripts around?
    Anything relevent in the console logs?

  • Can I write a script to automatically clean out mail messages on server?

    I have a serious mail.app difficulty where the program does not successfully erase all messages on my mail server.
    Can anyone give me a hand on how to write a script that would automatically delete all already downloaded messages from two POP servers?
    best regards.

    The issue is knowing what's already been downloaded - the mail server doesn't keep track of that, only the mail client.
    That said, it should be possible to do - at least to delete all mail, but it might not be necessary. In most cases I've seen the mail client fails to delete messages because your scheduled check is too short - i.e. if you're set to check once per minute but you have so much mail on the server it takes 2 minutes to delete them all, the mail client fails. If that's the case just turn down your schedule to check less often (e.g. every 10 or 15 minutes) so that it has time to delete the messages.

  • Mail App, gMail and automatically deleting trash

    I have the Mail App setup for gmail's IMAP configuration. I have set up the client to store both locally and the server for the TRASH folder. gMail automatically deletes trash in 30 days but I am trying to enhance that feature by allowing MAIL to handle this for me. And as you would have guess, I want less than 7 days too.
    So I developed a script that when run removes the trash greater than 3 days. But as soon as I do it the TRASH is added back from the server. It seems to work but doesn't stick.
    Here is my script if someone is curious:
    tell application "Mail"
    delete (every message of mailbox "Trash" of account "Google Mail" whose (date received is less than (current date) - 3 * days))
    end tell
    Maybe there is a better way to do this. I would appreciate any suggestions or solutions that you guys know about.
    Thanks in advance.
    -Mickey

    An SSL cert'd link/download simply confirms the logon/handoff/receipt is passing over a secure connection.
    What occurs to your particular packets in transit, point-to-point-to-point is another matter entirely.

  • Automatically delete invite email?

    Is there a way to have mail automatically delete an invite email once I've selected whether I'll be attending?
    This feature exists within Microsoft's Entourage and it was great because if it was still in my inbox then I knew I hadn't responded. Now, I can't remember what I've responded to and what I haven't since they all remain in my inbox and have unintentionally deleted ones I hadn't yet responded to. I know I can click "more details" and have then event open a browser window to see if I had or not, but that's just an additional step.

    If you mean by accessed, the user hasn't logged-in to check their E-mail, you'd probably have to write a script to parse the pop or imap logs in msg-instance/log.
    If you write it in perl, it would be fairly straight forward. Perl has some very nice date/time parsing routines.
    I did a quick check of the schema reference and found nothing related to password expiration.
    Also, this is often considered an external maintenance issue. Along with an E-mail account, users will typically get a Unix or Windows system account. When the user's system account is deleted, the mail administrator should be notified to delete the user's mail account. We have scripts that perform creation and deletion of accounts.
    Roger S.

  • UCCX Scripting - Open/Close time of day is different on some days

    All,
    I currently have a simple UCCX script with a DOW and TOD variable set, but need to make an adjustment to accommodate a new schedule for a call center queue.  My DOW is Monday - Friday, and TOD is set to 8am-5pm.  I need to make a change to where say Wednesday is set to not close the queue until 10pm.  How do I make that happen?
    This is the way it shows in the editor:
    DOW: Monday-Friday
     +open:
      ++8am-5pm:
       +++Goto yadayada
      ++TheRest
     +Closed
    If I need Wednesday's queue to stay open between the hours of 8am and 10pm, what logic do I need to put in?  I'm thinking I'll have to add an IF Statement, but not sure where to start.  Any ideas?

    I was able to figure this out.  Below is what I did:
    Created two new Day of Week options and selected the corresponding days.  Under each, I moved the Time of Day statement and assigned the time ranges, then selected the goto statement and assigned it as needed per my script.  
    This should provide the logic I was needed.  

Maybe you are looking for

  • Sending PJL to a HP LJ p2055d

    A fairly simple question, I'm sure, but I'm stumped - I'm trying to send plaintext to a LaserJet P2055d as a downlevel job {i.e. simply copying a file to the share path}. However, it includes a number of central European characters such as žđćšč whic

  • Looking for calendar widget similar to androids

    Im looking for a calendar widget similar to androids. Don't want to use google gmail

  • REMOVED_FROM_STAGE Being Called on Instantiation

    Hello, I've got an interesting predicament here.  I've got a MovieClip called GameOptions, and within that MovieClip, there's is another MovieClip called DifficultyButtons which subclasses RadioGroup.  DifficultyButtons contains a few MovieClips call

  • Can I use Oracle BPEL process manager with other AS and DB

    Can we user oracle bpel process manager with jboss application server and postgresql database.. is it possible.. and what will be the price.. per licencse when i go to just purchase Oracle BPEL process manager

  • Output type for Delivery note missing for shipping point

    Hi all,    I have a plant setup to email delivery note which uses shipping point SGUS.  Condition record is setup for this shipping point using Del Typ/Shipping Point /Plant.  This uses the communication stragery ZINT. The email works well for this s