BUG when deleting roaming cache profile

Hi,
I have already post this kind of message but in a bad language forum ...
I have try to set the option "Delete cached copies of roaming profiles" : "HKLM\Software\Policies\Microsoft\Windows\System\DeleteRoamingCache", reboot the pc and then open a session with a domain
user with a roaming profile (with no homedrive & no homedirectory  : still buggy on build 10051).
The session works, then i open a remote browser on "\\mypcwin10\c$\Users", the user folder appears, good form the moment. 
Then i close the session .... and the i observe the remote brower... the folder is not completely deleted, :
The folder "\\mypcwin10\c$\Users\myuser\AppData\Local\TileDataLayer\Database" cannot be deleted and contains three files :
EDB.TXT, EDBtmp.txt , vedatamodel.edb : that are still in use (size 2048k + 2048k + 512k)
In previous version the folder was totally deleted.
Best regards
KoXo

Hi,
Thanks for your detailed report. This is a test build and I also could reproduce this issue on my lab machine.
Here I would suggest you post your feedback directly to our Feedback channel, it may change in later release.
http://windows.microsoft.com/en-in/windows/preview-how-to#how-to=tab7
Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

Similar Messages

  • N8 IMAP e-mail bug when deleting mail

    Bug : 
    When I open my IMAP (Google) mail with N8's native mail client (configured as IMAP because push e-mail still isn't fixed on the N8 after 3 months of usage !!!) it often starts syncing. When I delete an e-mail before the sync is over, it doesn't get deleted ... allthough it dissappears from  the inbox ...It IS still showing up in the widget however. When closing and reopening the mailclient again .. it reappears in the inbox.
    So mail can only be really deleted when waiting for the sync to finish.
    This is BAD programming ! Please fix

    Hi Netherlands,
    Many, many rules active. Perhaps 100. None of which use the action "Delete Message." I have had these rules enforced for quite a long time. Years. Also I've ruled out a rules problem since their application is fairly instant. I've seen these E-mail. Gone back and replied to them. Gone back and seen them again and THEN they disappear.
    Negative on the Auto Synch feature: it is not nor ever has been checked.
    Thanks for your time and response.
    Con mucho Appreciado,
    Wm

  • Possible Playlist Bug When Deleting Items

    I've discovered a potential bug in the way additional detail is displayed for a track when you tap the ellipsis on the right side of a track in a playlist. I am in the US, using an iPhone 5 running iOS 7.1.2 and Spotify 1.4.1.4.
    If I have a playlist that contains several songs, and I delete the first song, the detail page for the new first song actually shows the detail for the second song. Every time a playlist item is deleted from the top of the playlist, the index for the item displayed in the details page is incremented by one more than it should be, so if I delete another song, the detail page for the new first song in the playlist now shows the details for the third song, and so forth. This happens until you do something such as playing a track, and then the details page shows the correct track information.
    I have screenshots, but I don't see a way of submitting feedback via the app. I can post them here when I get to a PC.

    I have the same problem after removing songs from the playlist. The currently playing song shown in the list is different from the playing song at the moment. 

  • Bug when deleting anchor points

    I think I discovered a bug. Say this is a line with anchor points:
    x---x---x---x---x---x---x
    And this is what I want to achieve using the Delete Anchor Point Tool:
    x-----------x-----------x
    Then this is as far as I'm actually able to get:
    x-------x---x-----------x
    Because for some reason, if I delete the 2nd anchor point, the 3rd will be deleted too. I can, however, delete the 3rd without deleting the 2nd.
    It is only after I've moved the 3rd further away that I'm able to delete the 2nd, but this gets tiring after a while.
    I'm using Flash CS5.5.
    --Dwayne

    If you think you have discovered a bug, you should report it to Adobe.  These are user-to-user forums, so reporting it here is just telling everybody else that uses the software, which in some cases can lead to someone explaining that it is not a bug, but in any case, posting here more often than not won't get Adobe's attention.  If you want to be sure it comes to Adobe's attention use the link below...
    Adobe - Wishlist & Bug Report
    http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • Hi, I developed a web application using HTML5-Offline Application Cache mechanism. Inspite of deleting the cache as mentioned in the above steps, Firefox still maintains a copy of the page in it's cache. Also, a serious bug is, even though we delete all

    == Issue
    ==
    I have a problem with my bookmarks, cookies, history or settings
    == Description
    ==
    Hi,
    I developed a web application using HTML5-Offline Application Cache mechanism. Inspite of deleting the cache as mentioned in the above steps, Firefox still maintains a copy of the page in it's cache. Also, a serious bug is, even though we delete all temp files used by Firefox, and open the previously cached page, it displays it correctly, but upon refreshing/reloading it again shows the previous version of the page maintained in the cache.
    == Troubleshooting information
    ==
    HTML5: Application Caching
    .style1 {
    font-family: Consolas;
    font-size: small;
    text-align: left;
    margin-left: 80px;
    function onCacheChecking(e)
    printOutput("CHECKINGContents of the manifest are being checked.", 0);
    function onCacheCached(e) {
    printOutput("CACHEDAll the resources mentioned in the manifest have been downloaded", 0);
    function onCacheNoUpdate(e)
    printOutput("NOUPDATEManifest file has not been changed. No updates took place.", 0);
    function onCacheUpdateReady(e)
    printOutput("UPDATEREADYChanges have been made to manifest file, and were downloaded.", 0);
    function onCacheError(e) {
    printOutput("ERRORAn error occured while trying to process manifest file.", 0);
    function onCacheObselete(e)
    printOutput("OBSOLETEEither the manifest file has been deleted or renamed at the source", 0);
    function onCacheDownloading(e) {
    printOutput("DOWNLOADINGDownloading resources into local cache.", 0);
    function onCacheProgress(e) {
    printOutput("PROGRESSDownload in process.", 0);
    function printOutput(statusMessages, howToTell)
    * Outputs information about an event with its description
    * @param statusMessages The message string to be displayed that describes the event
    * @param howToTell Specifies if the output is to be written onto document(0) or alert(1) or both(2)
    try {
    if (howToTell == 2) {
    document.getElementById("stat").innerHTML += statusMessages;
    window.alert(statusMessages);
    else if (howToTell == 0) {
    document.getElementById("stat").innerHTML += statusMessages;
    else if (howToTell == 1) {
    window.alert(statusMessages);
    catch (IOExceptionOutput) {
    window.alert(IOExceptionOutput);
    function initiateCaching()
    var ONLY_DOC = 0;
    var ONLY_ALERT = 1;
    var BOTH_DOC_ALERT = 2;
    try
    if (window.applicationCache)
    var appcache = window.applicationCache;
    printOutput("BROWSER COMPATIBILITYSUCCESS!! AppCache works on this browser.", 0);
    appcache.addEventListener('checking', onCacheChecking, false);
    appcache.addEventListener('cached', onCacheCached, false);
    appcache.addEventListener('noupdate', onCacheNoUpdate, false);
    appcache.addEventListener('downloading', onCacheDownloading, false);
    appcache.addEventListener('progress', onCacheProgress, false);
    appcache.addEventListener('updateready', onCacheUpdateReady, false);
    appcache.addEventListener('error', onCacheError, false);
    appcache.addEventListener('obsolete', onCacheObselete, false);
    else
    document.getElementById("stat").innerHTML = "Failure! I cant work.";
    catch (UnknownError)
    window.alert('Internet Explorer does not support Application Caching yet.\nPlease run me on Safari or Firefox browsers\n\n');
    stat.innerHTML = "Failure! I cant work.";
    == Firefox version
    ==
    3.6.3
    == Operating system
    ==
    Windows XP
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 ( .NET CLR 3.5.30729; .NET4.0E)
    == Plugins installed
    ==
    *-Shockwave Flash 10.0 r45
    *Default Plug-in
    *Adobe PDF Plug-In For Firefox and Netscape "9.3.2"
    *NPRuntime Script Plug-in Library for Java(TM) Deploy
    *The QuickTime Plugin allows you to view a wide variety of multimedia content in Web pages. For more information, visit the QuickTime Web site.
    *Google Update
    *4.0.50524.0
    *Office Live Update v1.4
    *NPWLPG
    *Windows Presentation Foundation (WPF) plug-in for Mozilla browsers
    *Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers
    *Npdsplay dll
    *DRM Store Netscape Plugin
    *DRM Netscape Network Object
    Thanks & Regards,
    Kandarpa Chandrasekhar Omkar
    Software Engineer
    Wipro Technologies
    Bangalore.
    [email protected]
    [email protected]

    We have had this issue many, many times before including on the latest 3.6 rev. It appears that when the applicationCache has an update triggered by a new manifest file, the browser may still use only its local network cache to check for updates to the files in the manifest, instead of forcing an HTTP request and revalidating both the browser cache and the applicationCache versions of the cached file (seems there is more than one). I have to assume this is a browser bug, as one should not have to frig with server Cache-Control headers and such to get this to work as expected (and even then it still doesn't sometimes).
    The only thing that seems to fix the problem is setting network.http.use-cache to false (default is true) in about:config . This helps my case because we only ever run offline (applicationCache driven) apps in the affected browser (our managed mobile apps platform), but it will otherwise slow down your browser experience considerably.

  • Bug: halt when deleting unneeded update files

    If WSUS installed on a heavy IO loaded harddrive (LUN) of a VM, when deleting unneeded update files by Server Cleanup Wizard, MMC node may halt.
    Server OS: Windows Server 2012 Standard
    Errors can be located in Event Log:
    An unhandled exception occurred and the process was terminated.
    Application ID: /LM/W3SVC/1881423753/ROOT/ServerSyncWebService
    Process ID: 3288
    Exception: System.NullReferenceException
    Message: Object reference not set to an instance of an object.
    StackTrace:    at Microsoft.UpdateServices.Internal.DataAccess.GetRevisionIdListForCache(Int64 deploymentChangeNumber, Int64& highestChangeNumber, CategoryIdCacheEntry[]&
    newCategoryDeployments, CategoryIdCacheEntry[]& deletedCategoryDeployments, RevisionIdCacheEntry[]& newRevisionDeployments, RevisionIdCacheEntry[]& deletedRevisionDeployments)
    at Microsoft.UpdateServices.Internal.RevisionIdCache.UpdateCategoryAndRevisionIdCache(Int64 deploymentChangeNumberAtRefresh)
    at Microsoft.UpdateServices.Internal.ServerImplementation.UpdateCache()
    at Microsoft.UpdateServices.Internal.ServerImplementation.DatabaseChangeHandler(Object byTimer)
    at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
    at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
    at System.Threading.TimerQueueTimer.CallCallback()
    at System.Threading.TimerQueueTimer.Fire()
    at System.Threading.TimerQueue.FireNextTimers()
    Application: w3wp.exe
    Framework Version: v4.0.30319
    Description: The process was terminated due to an unhandled exception.
    Exception Info: System.NullReferenceException
    Stack:
    at Microsoft.UpdateServices.Internal.DataAccess.GetRevisionIdListForCache(Int64, Int64 ByRef, Microsoft.UpdateServices.Internal.CategoryIdCacheEntry[] ByRef, Microsoft.UpdateServices.Internal.CategoryIdCacheEntry[]
    ByRef, Microsoft.UpdateServices.Internal.RevisionIdCacheEntry[] ByRef, Microsoft.UpdateServices.Internal.RevisionIdCacheEntry[] ByRef)
    at Microsoft.UpdateServices.Internal.RevisionIdCache.UpdateCategoryAndRevisionIdCache(Int64)
    at Microsoft.UpdateServices.Internal.ServerImplementation.UpdateCache()
    at Microsoft.UpdateServices.Internal.ServerImplementation.DatabaseChangeHandler(System.Object)
    at System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
    at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
    at System.Threading.TimerQueueTimer.CallCallback()
    at System.Threading.TimerQueueTimer.Fire()
    at System.Threading.TimerQueue.FireNextTimers()
    Faulting application name: w3wp.exe, version: 8.0.9200.16384, time stamp: 0x50108835
    Faulting module name: KERNELBASE.dll, version: 6.2.9200.16384, time stamp: 0x5010ab2d
    Exception code: 0xe0434352
    Fault offset: 0x00000000000189cc
    Faulting process id: 0xcd8
    Faulting application start time: 0x01cdcff0fa98da3e
    Faulting application path: c:\windows\system32\inetsrv\w3wp.exe
    Faulting module path: C:\Windows\system32\KERNELBASE.dll
    Report Id: 332ed25c-3c39-11e2-93f1-005056b26389
    Faulting package full name: 
    Faulting package-relative application ID:
    Step to repo:
    1 Open Update Services MMC.
    2 Click Options from the left panel.
    3 Select Server Cleanup Wizard from the right.
    4 Press Next.
    MMC node MAY(only when lots of files need to be deleted) be prompted to be reset when deleting unneeded files if it's running longer than usual. Re-open Update Services MMC will fix it. But
    it will be appeared again another day when many unneeded files exist.
    Eternal Snow

    Nothing to me indicated that his previous disks weren't functional.
    In the very first two lines of the first post of this thread, the drive was described as "heavily loaded". Specifically the scenario was:
    If WSUS installed on a heavy IO loaded harddrive (LUN) of a VM
    Running the Server Cleanup Wizard, particularly performing the "Delete unneeded updates..." action is a highly database intensive action. If that task is competing for IOPS on the disk system, then there's absolutely a high probability that the task
    will "timeout" before the stored proc being called can complete it's task.
    The "fix" is to put the application on a properly equipped machine.
    If the guys who wrote the system can't create it to not fall over if the HDs it's on happen to be a wee bit slow, then yes it's a bug and they've written it badly.
    We're not talking about "a wee bit slow", though, are we?
    As for timeout issues, it's a natural artifact of a WSUS server these days. Read every tenth thread in this forum and somebody is having issues with timeout errors.
    There are two contributing factors. The first is that the number of updates currently contained in the MU catalog is about 100x the number of updates that existed when WSUS v3 was originally written in 2007.
    The second is that in 95% of the cases, the administrator reporting the issue failed to properly performed needed administrative and maintenance activities on the WSUS server over the lifespan of the server.
    Lawrence Garvin, M.S., MCITP:EA, MCDBA, MCSA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2013)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence R Garvin
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • Display color profile bug when using the fast account switch from a guest account to an admin account (and vice versa)

    Hey,
    I'm sometimes using a guest account on my MBP (unibody late 2008 2,4 GHz Core2Duo, 4GB DDR3 running OSX 10.9.4 on an OCZ 128GB SSD) for a more distraction-free working space and I noticed right away a disturbing bug:
    Using the fast account switch (upper right hand corner of the screen) in Mavericks from an admin account to log into a guest account (or vice versa) produces, after the fancy rotating cube animation, some strange distortion of the desktop background happens (lasting approx. 2 sec.). After that the color profile of the display is changed into an usable but ugly one, which is disturbing while working with pictures. When checking the color profile in the pref pane, the standard "display" profile is said to be active (it's the one I use) but still the colors aren't the same. Selecting another profile and re-selcting the desired one doesn't fix the problem. Switching back to the other account with the fast switching leaves the colors altered. Logging out and deleting the guest account seems to the problem for the remaining admin account. Rebooting  and logging in to either of the accounts (admin or guest) from the standard account selecting page at booting shows the normal color profile.
    Is it a general bug or is their anything a can do to prevent this problem (other than never using the fast switching)?
    Thanks for your advice.
    Mael

    I cannot agree more with your comments! What a way to frustrate your customers!
    I have been having an issue with iCloud on Mac where it kept asking me for my password and sometimes would, sometimes would not continue to access my iCloud mail. Today it just refused to connect to iCloud mail.
    I looked in the Mail, Contacts and Calendars in my MacBook Pro settings and discovered that 2 iCloud accounts were present. One with my original Apple ID (a gmail address) and a second with my new iCloud email ( an @me.com address). Having deleted the second account, using the new @me.com address everything is working fine.
    So from my viewpoint when I moved over to iCloud I was asked to sign in with my Apple ID (the gmail address) then to create an @me.com address. However, as far as I can see all sign ins to the new @me.com account on Macbook, iPhone and iPad need to be done through the old Apple ID (the gmail address). Is that confusing and just plain crazy???
    Further, after creating the new @me.com address I soon found out that this is apparently now forever bound to my old Apple ID and cannot be changed. I mean why can't I delete the iCloud account and start anew with a different @me.com address??? Also, as everybody using iCloud must create an @me.com address why on earth can I not get rid of my old gmail address and have my entire Apple ID accessed through the new @me.com address? Creating a whole new Apple ID will not solve this as we are unable to transfer purchases between accounts.
    Apple products are great IMHO, but they do seem to not think things through in a very big way sometimes......

  • I'm having 10.8.3 and today 17-Apr I had installed latest java 7 update. Now when ever I test java page it just redirects the page to Java download on both Firefox and safari. I tried deleting the cache from Java Sec Panel - temp ile but still same proble

    I'm having 10.8.3 and today 18-Apr Thursday I had installed latest java 7 update. Now when ever I test java page it just redirects the page to Java download on both Firefox and safari. I tried deleting the cache from Java Sec Panel - temp ile but still same prob.

    Make sure that the plugin is not automatically disabled in Firefox:
    Clinton

  • When is query cache deleted?

    Hello All,
    I searched this forum and SAP for notes but couldn't find exactly when query cache is deleted.
    For example, we know when new data is loaded to an infocube, but what about when new master data is loaded?  If a query still has the existing transaction data loaded, but new master data is loaded (and a query output is reading and attribute), should it NOT read cache?
    What are the hard and fast rules?
    Thank you so much!

    Queries check to see if new data has been loaded to a cube/DSO since teh data has been cached. If new data has been loaded, the old cached data for that query is deleted and the new execution of the query will read the data from the database.  A new master data load would not effect the last load date on a cube/DSO, so it would not cause the the cache to be deleted for a quary on the cube/ODS.  If you had set the Master Data InfoObject to be an InfoProvider and had just a master data query (no cube/ODS), the cached master data query results should get deleted.
    As a matter of practice, Master Data should be loaded before loads to the cubes/ODS are done.
    As mentioned you can delete OLAP cache from tran RSRCACHE.  There is also a batch program you can run to delete entries from OLAP cache.  You can specify specific query results to be deleted, and you can also use it to delete all cached results that are older than a specifiied number of days.

  • Windows 7 Screen Resolution not changing at all when I try to change settings. I ve lost my ToolBar on internet for settings ( deletion of cache) Please help me to reset screen.

    Windows 7 Screen Resolution not changing at all when I try to change settings. I ve lost my ToolBar on internet for settings ( deletion of cache) Please help me to reset screen. The screen seems to have slipped or moved to the right. Only icons on left of
    screen showing. I Need to regain The right side of the scree
    I have tried everything I know to sort this out. Thankyou you in advance. Katy Nanna x

    Hi,
    When you set your monitor to a screen resolution that it won't support, the screen will go black for a few seconds while the monitor reverts back to the original resolution.
    Regarding screen resolution, we may follow the below two articles to change it:
    Change your screen resolution
    Getting the best display on your monitor
    Follow the steps below:
    1. Open Screen Resolution by clicking the Start button, clicking
    Control Panel, and then, under Appearance and Personalization, clicking Adjust screen resolution.
    2.Click the drop-down list next to Resolution. Check for the resolution marked (recommended). This is your LCD monitor's native resolution—usually the highest resolution your monitor can support.
    And if the monitor is LCD monitor, The monitor's  manufacturer or reseller should also be able to tell you the native resolution for your LCD monitor.  Or we may check the monitor's manual to adjust.
    Best regards
    Michael Shao
    TechNet Community Support

  • When deleting cache and cookies will my passwords be deleted also

    will my passwords be deleted when i clear my cookies and cache

    Passwords will not be deleted if you just clear the cookies and the cache. What you will lose when deleting cookies is the "Remember me" option on websites, so you will have to log into the websites again.

  • Command authorization error when using aaa cache

    Hi,
    I'm trying to use the aaa cache mode for command authorization. But when I execute a command there is always an error message:
    % tty2 Unknown authorization method 6 set for list command
    The command is then always authorized against the tacacs server.
    The 'authentication login', 'authentication enable' and 'authorization exec' are using the cache properly.
    I have tried it with an Accesspoint AIR-AP1242AG-E-K9, IOS 12.3(8)JEA and a Catalyst WS-C3550-24PWR-SMI, IOS 12.2(35)SE with the same results.
    Deleting the cache entry and using only the tacacs group the error message disappears.
    Any suggestions?
    Thanks.
    Frank
    ======
    config
    ======
    aaa new-model
    aaa group server tacacs+ group_tacacs
    server 10.10.10.10
    server 10.10.10.11
    cache expiry 12
    cache authorization profile admin_user
    cache authentication profile admin_user
    aaa authentication login default cache group_tacacs group group_tacacs local
    aaa authentication enable default cache group_tacacs group group_tacacs enable
    aaa authorization console
    aaa authorization config-commands
    aaa authorization exec default cache group_tacacs group group_tacacs local
    aaa authorization commands 15 default cache group_tacacs group group_tacacs local
    aaa accounting exec default start-stop group group_tacacs
    aaa cache profile admin_user
    profile admin no-auth
    aaa session-id common
    tacacs-server host 10.10.10.10 single-connection
    tacacs-server host 10.10.10.11 single-connection
    tacacs-server directed-request
    tacacs-server key 7 <removed>
    ============
    debug output
    ============
    ap#
    Feb 7 20:02:37: AAA/BIND(00000004): Bind i/f
    Feb 7 20:02:37: AAA/AUTHEN/CACHE(00000004): GET_USER for username NULL
    Feb 7 20:02:39: AAA/AUTHEN/CACHE(00000004): GET_PASSWORD for username admin
    Feb 7 20:02:42: AAA/AUTHEN/CACHE(00000004): PASS for username ^->o
    Feb 7 20:02:42: AAA/AUTHOR (0x4): Pick method list 'default'
    Feb 7 20:02:42: AAA/AUTHOR/EXEC(00000004): processing AV cmd=
    Feb 7 20:02:42: AAA/AUTHOR/EXEC(00000004): processing AV priv-lvl=15
    Feb 7 20:02:42: AAA/AUTHOR/EXEC(00000004): Authorization successful
    ap#
    Feb 7 20:02:54: AAA: parse name=tty2 idb type=-1 tty=-1
    Feb 7 20:02:54: AAA: name=tty2 flags=0x11 type=5 shelf=0 slot=0 adapter=0 port=2 channel=0
    Feb 7 20:02:54: AAA/MEMORY: create_user (0xBA9C34) user='admin' ruser='ap' ds0=0 port='tty2' rem_addr='10.10.1.1' authen_type=ASCII service=NONE priv=15 initial_task_id='0', vrf= (id=0)
    Feb 7 20:02:54: tty2 AAA/AUTHOR/CMD(787222339): Port='tty2' list='' service=CMD
    Feb 7 20:02:54: AAA/AUTHOR/CMD: tty2(787222339) user='admin'
    Feb 7 20:02:54: tty2 AAA/AUTHOR/CMD(787222339): send AV service=shell
    Feb 7 20:02:54: tty2 AAA/AUTHOR/CMD(787222339): send AV cmd=show
    Feb 7 20:02:54: tty2 AAA/AUTHOR/CMD(787222339): send AV cmd-arg=running-config
    Feb 7 20:02:54: tty2 AAA/AUTHOR/CMD(787222339): send AV cmd-arg=<cr>
    Feb 7 20:02:54: tty2 AAA/AUTHOR/CMD(787222339): found list "default"
    Feb 7 20:02:54: % tty2 Unknown authorization method 6 set for list command
    Feb 7 20:02:54: AAA/AUTHOR (787222339): Post authorization status = ERROR
    Feb 7 20:02:54: tty2 AAA/AUTHOR/CMD(787222339): Method=group_tacacs (tacacs+)
    Feb 7 20:02:54: AAA/AUTHOR/TAC+: (787222339): user=admin
    Feb 7 20:02:54: AAA/AUTHOR/TAC+: (787222339): send AV service=shell
    Feb 7 20:02:54: AAA/AUTHOR/TAC+: (787222339): send AV cmd=show
    Feb 7 20:02:54: AAA/AUTHOR/TAC+: (787222339): send AV cmd-arg=running-config
    Feb 7 20:02:54: AAA/AUTHOR/TAC+: (787222339): send AV cmd-arg=<cr>
    Feb 7 20:02:54: AAA/AUTHOR (787222339): Post authorization status = PASS_ADD
    Feb 7 20:02:54: AAA/MEMORY: free_user (0xBA9C34) user='admin' ruser='ap' port='tty2' rem_addr='10.10.1.1' authen_type=ASCII service=NONE
    priv=15 vrf= (id=0)

    Hi,
    I really do not think that command authorization results will be cached. The cache keeps the user credentials and attributes passed during exec authorization but for command authorization it would have to check with the tacacs server always.
    Regards,
    Vivek

  • Delete Terminal Services profile from custom directory

    We have Terminal Servers running Windows Server 2003. 
    We have TS Profile Path set to D:\TSProfilesXXX1 using Group Policy.
    Now, we are planning to delete all the old TS profiles from C:\Documents and Settings and D:\TSProfilesXXX1 folders.
    Found Utility DELPROF from Microsoft, however, it works for C:\Documents and Settings by default and does not seem to be working for D:\TSProfilesXXX1.
    Any Help here ???
    MCSE Certified

    Hi,
    Thank you for your posting in Windows Server Forum.
    For your issue, you can delete the cached copy of roaming profile by GPO setting. Please check the GPO setting “Computer Configuration | Administrative Templates | System | User Profiles
    | Delete cached copies of roaming profiles.”
    More information.
    User Profiles
    To manually remove you can also use registry setting. If you’re connecting to a remote computer and not cleaning up a local registry, click on Registry in the File menu and select Connect To Network Registry. Enter the name of the computer you deleted profiles
    from and browse down in the registry to these two locations:
    •HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Group Policy\
    •HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList\
    Detail information.
    Clean up Terminal Services profiles with DELPROF
    Hope it helps!
    Thanks.
    Dharmesh Solanki

  • TB freezes when deleting emails. Only anti-virus is Windows Defender.

    When I click on an email message and click one of the <delete> buttons, the little blue circle comes on, and I get a message "(not responding)". That is one click of <delete> for one email line. Usually happens after deleteing a few previous emails
    TB 24.4.0. Windows8.1. Windows Defender. All up to date.
    I checked. Do _not_ have McAfee, Norton, Avast, etc. on system or as Add-ons.
    Tried restarting Windows 8.1. a few times. Problem remains.

    I've seen this issue on every Win 8 installation as well. It seems to be caused by contention; Thunderbird and Windows Defender are doing a lot of disk IO on the same files.
    The solution is simple: exclude the Thunderbird profile directory from being scanned by Defender.
    Open Windows Defender (Start -> flick up or use down button with mouse -> Look for "Windows Defender" under the "Windows system" header).
    Go to Settings, "Excluded files and locations" and use the Browse button.
    Find c:\users\<your username>\AppData\Roaming\Thunderbird\Profiles
    Select this directory, then press the "Add" button.
    If the directory is shown in the bottom dialog, press "Save changes".
    All done, Thunderbird should be ready to go, without performance issues.
    @dev team: this might be something you want to automate!

  • How To Properly Delete a User Profile on Windows 7 in a Domain environment

    I have not been able to find an answer that matches the issue I'm facing. I had recently setup a laptop for a user and soon after, he was experiencing issues that I thought might be profile related. So, I did what always worked for me on prior versions of
    Windows without any fuss or side affects.
    Logged in under the local Administrator account, I went into: System Properties>User Profiles>Settings and removed the user profile from their. When I do that, I get an error message:
    Profile Error
    Profile not deleted completely. Error - A required privilege is not held by the client
    Ok, no problem I think. I just need to delete the user's profile directory under the users folder right? So I do this and figure when I try to log in again as the user that a new profile will be created. However, this is not what happens exactly. I login
    with the user credentials and it logs in successfully. However, I get a pop saying:
    You have been logged on with a temporary profile
    You cannot access your files and files created in this profile will be deleted when you log off. To fix this, log off and try logging on later.
    Please see the event log for details or contact your system administrator
    So my question is; why did the profile not delete completely after both deleting the user profile under System Properties and after deleting the actual profile directory? What did I miss and what is the proper method of deleting a user profile completely
    without running into these other issues?

    Hi Womprat,
    According to your description, I understand that you want to delete user profile but display an error in Windows 7.
    Please use other user (with administrator privileges) login this computer, then open Properties for Computer--->Advanced system setting--->Settings for User Profiles, then select the profile you want to delete.
    More details about Delete a user account, please refer to:
    http://windows.microsoft.com/en-us/windows7/delete-a-user-account
    Additional, please contact Windows 7 IT Pro Team so that you can get more professional suggestions. For your convenience:
    https://social.technet.microsoft.com/Forums/en-US/home?category=w7itpro&filter=alltypes&sort=lastpostdesc
    Best regards,
    Allen Wang

Maybe you are looking for