Virtual Display when nobody is logged in

I manage a lot of Lion computers, and was wondering if this is possible: Is there a way to initiate a virtual display session via VNC when nobody is logged into a Lion computer? I'd really prefer if I could do this rather than take over the computer. I'd like it to just sit at the login screen while I do everything in the background.

I just tried selecting "virtual display" but the machine still mirrors what I do in VNC despite it saying it's on the virtual display. Any ideas?    

Similar Messages

  • Does Time Machine make back-ups when nobody is logged on?

    Hello,
    Does Time Machine make back-ups when nobody is logged on and does it continue to back-up when I log off?
    I'm using an directly connected external hard drive to back-up my data with Time Machine, the back-ups are encrypted.
    Thanks in advance.

    I had the same problem with Time Machine and solved it by enabling "Enable Power Nap" in Energy Saver:
    System Preferences...
    Energy Saver
    Restore Defaults
    Check "Enable Power Nap: While sleeping, your Mac can back up using Time Machine and periodically check for new email, calendar, and other iCloud updates."
    2013 21.5 iMac
    OSX Mavericks
    Seagate 1 TB slim USB 3.0 (power is drawn from USB port), formatted to Mac Journaling File System

  • FireWire drive keeps unmounting when nobody's logged in

    I have a Core Solo Mini I am using as a server for various purposes (shared iTunes and web server, with another partition reserved for Time Machine once Leopard comes out) as well as for normal desktop use for my wife and kids. The server partitions are all on an external 400 GB FireWire drive, since the mini's internal drive is so small.
    [FWIW, I used to use a Cube in this fashion, but came up against its 120 GB limit for internal drive]
    Anyways, even though I have it set to share the FireWire partitions via AFP, and even though I've pointed Apache over to directories on the FireWire drive as the root directories for various virtual hosts, the machine still has a habit of unmounting the FireWire drive if nobody's logged in and I'm not actively using the net-mounted drive on another machine (eg, if I'm not playing iTunes off of it).
    When this happens, trying to browse its drives from another machine only shows the internal partitions, not the FireWire drive, and Apache barfs up errors like "document not found for /".
    This kind of s*cks. Is there any way I can get OS X to never unmount the FireWire drive?
    To answer the obvious question: yes, the mini is set to never sleep.
    Thanks in advance.
    --Chris
    Dual 1.8 GHz G5 Tower, PB G4 1.33, G4 Cube 450 MHz   Mac OS X (10.4.8)  

    I had a similar unmounting issue with one of my internal hard disks that I was using for nightly backups. I discovered that when no one was logged in the backup would fail. I have to look up the required fix to keep the disk mounted, someone here gave me the method for changing that default behavior with a simple terminal command. Don't have it handy with me right now, but I think this should be fixable by the same method for your FW drive. I'll post it later, if someone else hasn't before me.

  • CryptAcquireContext failing with ERROR_FILE_NOT_FOUND (2L) when user not logged on Windows 8.1

    I am having a hard time migrating a C++ CryptoAPI-based application that currently runs on Windows Server 2008 to Windows 8.1. The scenario is:
    This application is eventually triggered by WatchDog.exe, which in its turn is triggered when the computer is started by Windows' Task Scheduler.
    Task Scheduler uses the following rules to start the WatchDog.exe:
    A Administrator User Account;
    Run Whether user is logged on or not;
    UNCHECKED: Do not store password. The task will only have access to local resources;
    Run with Highest Privileges;
    Configure for Win 8.1;
    Triggered at system startup.
    The server sits there, nobody logged, until in a given scenario WatchDog.exe starts the application. Application log confirms that the owner of the process (GetUserName)
    is the very same user Task Scheduler used to trigger WatchDog.exe.
    It turns out that this application works fine in Windows Server 2008, but in windows 8.1 a call to CryptAcquireContext fails
    with return code ERROR_FILE_NOT_FOUND (2L). The odd thing is that the application will NOT fail if, when started, the user is physically logged
    on the machine, although it was not the user who started the application manually.
    I took a look at the documentation and
    found:
    "The profile of the user is not loaded and cannot be found. This happens when the application impersonates a user, for example, the IUSR_ComputerName account."
    I had never heard of impersonification, so I made a research and found the APIs LogonUser,ImpersonateLoggedOnUser and RevertToSelf.
    I then updated the application in this way:
    HANDLE hToken;
    if (! LogonUser(L"admin", L".", L"XXXXXXXX", LOGON32_LOGON_BATCH, LOGON32_PROVIDER_DEFAULT, &hToken))
    logger->log (_T("Error logging on."));
    else
    logger->log (PMLOG_LEVEL_TRACE, _T("Logged on."));
    if (! ImpersonateLoggedOnUser(hToken))
    logger->log (_T("Error impersonating."));
    else
    logger->log (_T("Impersonated."));
    err = XXXXXXXXX(); // calls function which will execute CryptAcquireContext
    if (! RevertToSelf())
    logger->log (_T("Error reverting."));
    else
    logger->log (_T("Reverted."));
    Excerpt with the call to CryptAcquireContext:
    // Get the handle to the default provider.
    if(! CryptAcquireContext(&hCryptProv, cryptContainerName, MS_ENHANCED_PROV, PROV_RSA_FULL, 0))
    DWORD e = GetLastError();
    _stprintf_s (logMsg, 1000, _T("Error %ld acquiring cryptographic provider."), e);
    cRSALogger->log (logMsg);
    return ERR_CCRYPT_NO_KEY_CONTAINER;
    cRSALogger->log (_T("Cryptographic provider acquired."));
    As the result, I got the log:
    [2015/01/08 20:53:25-TRACE] Logged on.
    [2015/01/08 20:53:25-TRACE] Impersonated.
    [2015/01/08 20:53:26-ERROR] Error 2 acquiring cryptographic provider.
    [2015/01/08 20:53:26-TRACE] Reverted.
    That seems to show that impersonation is working properly, but still I get Error 2 (ERROR_FILE_NOT_FOUND) on CryptAcquireContext.
    Summary:
    On Windows Server 2008, the very same application runs properly even without the calls to LogonUser/Impersonate/Revert.
    On Windows 8.1, the application, with or without the calls to LogonUser/Impersonate/Revert, will only work properly if the user is logged on (which
    is not acceptable).
    Any thoughts where I can run to in order to get this working on windows 8.1?
    Thank in advance,
    Dan

    There are a couple of issues.
    Based on the parameters being used in CryptAcquireContext().  A profile needs to be loaded and your app has to be running as the same user who created the keyset. (which is why it works when a user is logged on Windows 8.1) Also, impersonation
    does not load your user profile, you need to call LoadUserProfile().  It seems like you should be using a machine keyset for your scenario if you want to do this when nobody is logged on.
    Take a look at the following KB article for more information.
    https://support.microsoft.com/kb/238187?wa=wsignin1.0
    thanks
    Frank K [MSFT]

  • My safari will not open after downloading librooksbas.dylib plug in. message that is displayed when i try and open is "safari quit unexpectedly while using the  librooksbas.dylib plug in" i can either re-open or ok the error to which neither work :(

    i have tried the terminal code thing where you enter certain words then press enter and it worked but as soon as i restarted it and opened safri the error message apperarewd again my software is OS X 10.9.1

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve your problem.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. All it does is to gather information about the state of your computer. That information goes nowhere unless you choose to share it on this page. However, you should be cautious about running any kind of program (not just a shell script) at the request of a stranger on a public message board. If you have doubts, search this site for other discussions in which this procedure has been followed without any report of ill effects. If you can't satisfy yourself that the instructions are safe, don't follow them.
    Here's a summary of what you need to do, if you choose to proceed: Copy a line of text from this web page into the window of another application. Wait for the script to run. It usually takes a couple of minutes. Then paste the results, which will have been copied automatically, back into a reply on this page. The sequence is: copy, paste, wait, paste again. Details follow.
    4. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    5. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply.
    6. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking  anywhere in the line. The whole line will highlight, though you may not see all of it in your browser, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin; clear; Fb='%s\n\t(%s)\n'; Fm='\n%s\n\n%s\n'; Fr='\nRAM details\n%s\n'; Fs='\n%s: %s\n'; Fu='user %s%%, system %s%%'; PB="/usr/libexec/PlistBuddy -c Print"; A () { [[ a -eq 0 ]]; }; M () { find -L "$d" -type f | while read f; do file -b "$f" | egrep -lq XML\|exec && echo $f; done; }; Pc () { o=`grep -v '^ *#' "$2"`; Pm "$1"; }; Pm () { [[ "$o" ]] && o=`sed -E '/^ *$/d;s/^ */   /;s/[-0-9A-Fa-f]{22,}/UUID/g' <<< "$o"` && printf "$Fm" "$1" "$o"; }; Pp () { o=`$PB "$2" | awk -F'= ' \/$3'/{print $2}'`; Pm "$1"; }; Ps () { o=`echo $o`; [[ ! "$o" =~ ^0?$ ]] && printf "$Fs" "$1" "$o"; }; R () { o=; [[ r -eq 0 ]]; }; SP () { system_profiler SP${1}DataType; }; id | grep -qw '80(admin)'; a=$?; A && sudo true; r=$?; t=`date +%s`; clear; { A || echo $'No admin access\n'; A && ! R && echo $'No root access\n'; SP Software | sed '8!d;s/^ *//'; o=`SP Hardware | awk '/Mem/{print $2}'`; o=$((o<4?o:0)); Ps "Total RAM (GB)"; o=`SP Memory | sed '1,5d; /[my].*:/d'`; [[ "$o" =~ s:\ [^O]|x([^08]||0[^2]8[^0]) ]] && printf "$Fr" "$o"; o=`SP Diagnostics | sed '5,6!d'`; [[ "$o" =~ Pass ]] || Pm "POST"; p=`SP Power`; o=`awk '/Cy/{print $NF}' <<< "$p"`; o=$((o>=300?o:0)); Ps "Battery cycles"; o=`sed -n '/Cond.*: [^N]/{s/^.*://p;}' <<< "$p"`; Ps "Battery condition"; for b in Thunderbolt USB; do o=`SP $b | sed -En '1d; /:$/{s/ *:$//;x;s/\n//p;}; /^ *V.* [0N].* /{s/ 0x.... //;s/[()]//g;s/\(.*: \)\(.*\)/ \(\2\)/;H;}; /Apple|SCSM/{s/.//g;h;}'`; Pm $b; done; o=`pmset -g therm | sed 's/^.*C/C/'`; [[ "$o" =~ No\ th|pms ]] && o=; Pm "Thermal conditions"; o=`pmset -g sysload | grep -v :`; [[ "$o" =~ =\ [^GO] ]] || o=; Pm "System load advisory"; o=`nvram boot-args | awk '{$1=""; print}'`; Ps "boot-args"; d=(/ ""); D=(System User); E=; for i in 0 1; do o=`cd ${d[$i]}L*/L*/Dia* || continue; ls | while read f; do [[ "$f" =~ h$ ]] && grep -lq "^Thread c" "$f" && e=" *" || e=; awk -F_ '!/ag$/{$NF=a[split($NF,a,".")]; print $0 "'"$e"'"}' <<< "$f"; done | tail`; Pm "${D[$i]} diagnostics"; done; [[ "$o" =~ \*$ ]] && printf $'\n* Code injection\n'; o=`syslog -F bsd -k Sender kernel -k Message CReq 'GPU |hfs: Ru|I/O e|last value [1-9]|n Cause: -|NVDA\(|pagin|SATA W|ssert|timed? ?o' | tail -n25 | awk '/:/{$4=""; $5=""};1'`; Pm "Kernel messages"; o=`df -m / | awk 'NR==2 {print $4}'`; o=$((o<5120?o:0)); Ps "Free space (MiB)"; o=$(($(vm_stat | awk '/eo/{sub("\\.",""); print $2}')/256)); o=$((o>=1024?o:0)); Ps "Pageouts (MiB)"; s=( `sar -u 1 10 | sed '$!d'` ); [[ s[4] -lt 85 ]] && o=`printf "$Fu" ${s[1]} ${s[3]}` || o=; Ps "Total CPU usage" && { s=(`ps acrx -o comm,ruid,%cpu | sed '2!d'`); o=${s[2]}%; Ps "CPU usage by process \"$s\" with UID ${s[1]}"; }; s=(`top -R -l1 -n1 -o prt -stats command,uid,prt | sed '$!d'`); s[2]=${s[2]%[+-]}; o=$((s[2]>=25000?s[2]:0)); Ps "Mach ports used by process \"$s\" with UID ${s[1]}"; o=`kextstat -kl | grep -v com\\.apple | cut -c53- | cut -d\< -f1`; Pm "Loaded extrinsic kernel extensions"; R && o=`sudo launchctl list | awk 'NR>1 && !/0x|com\.(apple|openssh|vix\.cron)|org\.(amav|apac|calendarse|cups|dove|isc|ntp|post[fg]|x)/{print $3}'`; Pm "Extrinsic system jobs"; o=`launchctl list | awk 'NR>1 && !/0x|com\.apple|org\.(x|openbsd)|\.[0-9]+$/{print $3}'`; Pm "Extrinsic agents"; o=`for d in {/,}L*/Lau*; do M; done | grep -v com\.apple\.CSConfig | while read f; do ID=$($PB\ :Label "$f") || ID="No job label"; printf "$Fb" "$f" "$ID"; done`; Pm "launchd items"; o=`for d in /{S*/,}L*/Star*; do M; done`; Pm "Startup items"; o=`find -L /S*/L*/E* {/,}L*/{A*d,Compon,Ex,In,Keyb,Mail/B,P*P,Qu*T,Scripti,Servi,Spo}* -type d -name Contents -prune | while read d; do ID=$($PB\ :CFBundleIdentifier "$d/Info.plist") || ID="No bundle ID"; [[ "$ID" =~ ^com\.apple\.[^x]|Accusys|ArcMSR|ATTO|HDPro|HighPoint|driver\.stex|hp-fax|\.hpio|JMicron|microsoft\.MDI|print|SoftRAID ]] || printf "$Fb" "${d%/Contents}" "$ID"; done`; Pm "Extrinsic loadable bundles"; o=`find -L /u*/{,*/}lib -type f | while read f; do file -b "$f" | grep -qw shared && ! codesign -v "$f" && echo $f; done`; Pm "Unsigned shared libraries"; o=`for e in DYLD_INSERT_LIBRARIES DYLD_LIBRARY_PATH; do launchctl getenv $e; done`; Pm "Environment"; o=`find -L {,/u*/lo*}/e*/periodic -type f -mtime -10d`; Pm "Modified periodic scripts"; o=`scutil --proxy | grep Prox`; Pm "Proxies"; o=`scutil --dns | awk '/r\[0\] /{if ($NF !~ /^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./) print $NF; exit}'`; Ps "DNS"; R && o=`sudo profiles -P | grep : | wc -l`; Ps "Profiles"; f=auto_master; [[ `md5 -q /etc/$f` =~ ^b166 ]] || Pc $f /etc/$f; for f in fstab sysctl.conf crontab launchd.conf; do Pc $f /etc/$f; done; Pc "hosts" <(grep -v 'host *$' /etc/hosts); Pc "User launchd" ~/.launchd*; R && Pc "Root crontab" <(sudo crontab -l); Pc "User crontab" <(crontab -l | sed 's:/Users/[^/]*/:/Users/USER/:g'); R && o=`sudo defaults read com.apple.loginwindow LoginHook`; Pm "Login hook"; Pp "Global login items" /L*/P*/loginw* Path; Pp "User login items" L*/P*/*loginit* Name; Pp "Safari extensions" L*/Saf*/*/E*.plist Bundle | sed -E 's/(\..*$|-[1-9])//g'; o=`find ~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \) | wc -l`; Ps "Restricted user files"; cd; o=`SP Fonts | egrep "Valid: N|Duplicate: Y" | wc -l`; Ps "Font problems"; o=`find L*/{Con,Pref}* -type f ! -size 0 -name *.plist | while read f; do plutil -s "$f" >&- || echo $f; done`; Pm "Bad plists"; d=(Desktop L*/Keyc*); n=(20 7); for i in 0 1; do o=`find "${d[$i]}" -type f -maxdepth 1 | wc -l`; o=$((o<=n[$i]?0:o)); Ps "${d[$i]##*/} file count"; done; o=$((`date +%s`-t)); Ps "Elapsed time (s)"; } 2>/dev/null | pbcopy; exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    7. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Click anywhere in the Terminal window and paste (command-V). The text you pasted should vanish immediately. If it doesn't, press the return key.
    If you see an error message in the Terminal window such as "syntax error," enter
    exec bash
    and press return. Then paste the script again.
    If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know your password, or if you prefer not to enter it, just press return three times at the password prompt.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line "[Process completed]" to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report your results. No harm will be done.
    8. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    When you post the results, you might see the message, "You have included content in your post that is not permitted." It means that the forum software has misidentified something in the post as a violation of the rules. If that happens, please post the test results on Pastebin, then post a link here to the page you created.
    Note: This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Terms of Use of Apple Support Communities ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • I recently changed my email on my apple account but the old email address is displayed when I go into iTunes or App Store not allowing me in.

    I recently changed my email on my apple account but the old email address is displayed when I go into iTunes or App Store not allowing me to sign into my account. At some points it's a vicious circle because it asks for a password at key times when trying to correct the problem. Note that the new email address shows when I log into my Apple account and shows it was verified. For some reason the system isn't updating to the new email in ALL places.
    I hope this is the right place to post this. Thanks!

    Apple doesn't monitor here. Best we can do is to push you to contact Apple directly.
    This is from the iOS Dev Center forum...
    http://devimages.apple.com/maintenance/
    We apologize for the significant inconvenience that our downtime has caused and encourage you to reach out to ourhttps://developer.apple.com/contact/ if you need any assistance.
    (Check under "Program Enrollment").
    Note that your program membership should have been automatically renewed if it lapsed during the downtime period.  If not, please be explicit about that in your support request.
    --- DrErnie

  • Content does not display when page first opened

    Hi All;
    I have a contenta are/region which I have divided into multiple tabbed areas. I have two main tabs that divide the content into two major topics. Within each of these main areas I have added 4 to five tabs. One set for example holds a calendar, another tab a news release area and a third a content area for holding multiple folders of a department's documentation. The problem I am encountering is that when I first bring up the page all I see are the tabs and no matter what tab area is exposed the content within it is not displayed. For example, I start with the Calendar tab active (the calendar does not display). I then click on to say the document area, which displays all of its content's correctly. When I return to the calendar tab the calendar is displayed. My question... how can I ensure that the calendar (or any other tabbed area's content is displayed when the user first brings up the page?
    PS. This is a hot topic since I will be demoing my pages to my managers next week in an effort to convince them that Oracle Portal is the way to go.

    When I email the page to our server, the href links are missing.
    You email the page to the server?  What does that mean?
    MaureenHayslett wrote:
    I am using CS3 on Mac OS 10.6. The page previews perfectly in Safari. When I email the page to our server, the href links are missing. For example, the banner doesn't use the correct font, and the background color the the whole page is missing. Please go to http://www.crhcarchives.org/links.html
    All of the other pages on the website look correct. Thank you.
    Look at the source on that page.  There is virtually no styling on it....
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
    <style type="text/css">
    <!--
    .style16
         {font-size:14px}
    -->
    </style>
    </head>
    There is nothing telling the page which fonts to use, or which colors to use.  Are you sure you have uploaded the correct page?

  • Custom ELF Displays ' - ' in Extended access log

    I am trying to capture some pretty basic custom fields in the extended access log.
    I have created the appropriate class files and formatted the access.log correctly.
    I know this because when I run Web Logic 6.1 on my windows desktop the Extended
    Access Logs displays the values correctly.
    When I move the JAR file containing the ELF Classes to a SunOS server with Web
    Logic 6.1 the Extended Access Log contains only '-' for the custom fields. I ran
    some JSP files on the sun server to pull the values from the Request to make sure
    they were not null. They display correctly on the JSP so I know the values exsist
    within the request.
    The mystery is why won't they display in the access.log on the sun machine? Has
    anyone else experinced this? Are there any settings I should be checking for on
    the sun servers console?
    Facts:
    * The classes ae correct becuase they display correctly on the windows machine
    * The request on the sun server contains my ELF values becuase I can print them
    on a jsp page
    * The JAR file which contains the ELF classes is sitting outside of the application
    and loads in the classpath successfully.(I know this because I had it wrong and
    couldn't start the server)

    I am trying to capture some pretty basic custom fields in the extended access log.
    I have created the appropriate class files and formatted the access.log correctly.
    I know this because when I run Web Logic 6.1 on my windows desktop the Extended
    Access Logs displays the values correctly.
    When I move the JAR file containing the ELF Classes to a SunOS server with Web
    Logic 6.1 the Extended Access Log contains only '-' for the custom fields. I ran
    some JSP files on the sun server to pull the values from the Request to make sure
    they were not null. They display correctly on the JSP so I know the values exsist
    within the request.
    The mystery is why won't they display in the access.log on the sun machine? Has
    anyone else experinced this? Are there any settings I should be checking for on
    the sun servers console?
    Facts:
    * The classes ae correct becuase they display correctly on the windows machine
    * The request on the sun server contains my ELF values becuase I can print them
    on a jsp page
    * The JAR file which contains the ELF classes is sitting outside of the application
    and loads in the classpath successfully.(I know this because I had it wrong and
    couldn't start the server)

  • "Internal error: An unexpected exception has occurred" error message displayed when browsing a cube.

    “Internal error: An unexpected exception has occurred“ error message displayed when browsing a cube.
    The error behaviour is quite irregular and does not occur for specific condition.
    Will cumulative update 9 for SQL Server 2008 R2 (SP1) installation help to fix the issue which is provided on the below link:
    (http://support.microsoft.com/kb/2152148)
    The current version of SQL Server I am using is as below:
    Microsoft SQL Server 2008 R2 (SP1) - 10.50.2500.0 (X64)   Jun 17 2011 00:54:03   Copyright (c) Microsoft Corporation  Enterprise Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1)
    Thanks in advance for the help!

    Hi Mon,
    The hotfix you said is for Microsoft SQL Server 2008. So it will not work on your scenario since you are using SQL Server 2008 R2.
    Based on the limited information, we cannot give you the exact reason that cause this issue. In order to narrow down this issue, you can apply the latest Service Pack and Cumulative Update as GregGalloway said. Besides, you can troubleshoot this issue by
    using the Windows Event logs and msmdsrv.log.
    You can access Windows Event logs via "Administrative Tools" --> "Event Viewer".  SSAS error messages will appear in the application log.
    The msmdsrv.log file for the SSAS instance that can be found in \log folder of the instance. (C:\Program Files\Microsoft SQL Server\MSAS10.MSSQLSERVER\OLAP\Log)
    Here is a blog about data collection for troubleshooting Analysis Services issues, please see:
    Data collection for troubleshooting Analysis Services issues
    Regards,
    Charlie Liao
    TechNet Community Support

  • Lion screen sharing black virtual display.

    I would like to use the switch to virtual display feature in screen sharing but when I choose this option my screen goes black.  A strange twist to the issue is the computer I have connected to switches to the login screeen.  The computers are mac mini(mid 2011) and iMac(mid 2007).  The mac mini has a clean install of 10.7 and the iMac was upgraded from 10.6.8 to 10.7.  Is any one else experiencing the issue?  Is this normal behavior?

    Remote Login and Remote Management are checked with all available options enabled, same issue.  Also tried Screen Sharing and Remote Login checked, same issue.  Remote Login isn't necessary for Screen Sharing or Remote Management, it is necessary for ssh login.  Let me explain the issue I'm having, I can connect to the remote machine and control the machine but when I switch to virtual display under the view menu in screen sharing the screen goes black.  If I go to the other machine the login screen is displayed.  I'm assuming I should see the login screen on the both screens or on my screen(the host I initiated the session with) while the user can continue to work without interruption.  Maybe I'm wrong but it doesn't make sense that the computer I'm using would go black and the remote computer would display the login screen.  Maybe I have to enable fast user switching on both.  There isn't much documentation on the subject.

  • How to undo the automatically start program to when a user logs on

    I have followed this following directions (http://technet.microsoft.com/en-us/library/cc736643%28v=ws.10%29.aspx#BKMK_TSC) :
    "Using Terminal Services Configuration
    Open Terminal Services Configuration.
    In the console tree, click Connections.
    In the details pane, right-click the connection for which you want to specify an initial program, and then click
    Properties.
    On the Environment tab, under Initial program, select
    Start the following program when the user logs on. This option allows you to configure an initial program for the connection.
    If you select Do not allow an initial program to be launched. Always show desktop, then Terminal Services cannot start a specified initial program automatically when a client connects to a terminal server. Instead, the user must start programs
    by using the default desktop that is displayed during the Terminal Services session.
    If you select Run initial program specified by user profile and Remote Desktop Connection or Terminal Services client, then the program that is specified in the default user profile and in Remote Desktop Connection or the Terminal Services
    client will run when the client connects to the terminal server.
    If you selected Start the following program when the user logs on, in
    Program path and file name, type the path and file name of the program that you want to start when the user logs on to the terminal server.
    In Start in, type the working directory path for the program, and then click
    OK."
    the problem is that now all of the server users get the specific program automatically starts when logged on and i cant undo it because i cant get to the desktop or to the "tscc.msc"
    is there a way to fix it?

    Hi,
    Thanks for posting in Windows Server Forum.
    As this thread has been quiet for a while, we assume that the issue has been resolved. At this time, we will mark it as ‘Answered’ as the previous steps should be helpful for many similar scenarios. If the issue still persists, please feel free to  reply
    this post directly so we will be notified to follow it up. 
    BTW,  we’d love to hear your feedback about the solution. By sharing your experience you can help other community members facing similar problems. 
    Thanks for your Support & understanding.
    Regards.
    Dharmesh Solanki
    TechNet Community Support

  • Sharepoints not displayed when connecting via FTP

    Hi All,
    Leopard Server 10.5.8 xserve 2 G5
    I have an issue with the built in FTP server.
    All my share point are set to be shared via FTP, yet they are not displayed when users log in and access the server via FTP.
    In Server Admin, Authenticated users see: FTP Root and Share Points.
    All relevant users have access to the FTP service, in the server settings.
    ACL permissions have been set correctly for those users.
    This is *sudo sharing -l* tells me, for all share points.
    name: Archive
    path: /Volumes/External RAID/Archive
    afp: {
    ftp: {
    name: Archive
    shared: 1
    guest access: 0
    smb: {
    Is there anything that I missed?
    Thanks for you help,
    Johan
    Message was edited by: JohanDouma

    Hi,
    Sorry for the late respons.
    My config:
    1 mac mini with OSX Server leopard
    1 airport extreem
    1 external HDD LaCie
    An airport Extreme has the posibility to share a network drive. So I plugged in my HDD into the airport extreme and configured the thing.
    Than I turned to the mac mini. And started configuring my sharepoints.
    So one of my sharepoints is the external HDD.
    There are several directories on there that I want to make available thru the legacy protocol FTP.
    So by just making these sharepoints available thru FTP i expected for these sharepoint to show up in mij directories if I connect to my external IP with a FTP client like CyberDuck.
    (portforwarding and everything is not the problem, because I can make a connections and all directories show up as browseable.
    But the sharepoint I made on the network drive just show up as an bin or another kind off file I can't open.
    Everything else is browsable..
    They show up by the way in the root dir of the FTP Server as regular symbolic links.
    Thru Finder I can browse them and do everything. But as soon as i connect over the internet, lan or whatever, these symbolic links are not the access point towards the directory underneath.
    They show up with the correct name just not as an dir I can open.
    Hope this helps
    Grtz and thnx
    (typed on an iPad and not fully used to it)

  • How to pop up a system message for a specific user when She/He log on SAP

    Hi Friends,
    As we know SM02 setting will pop up a system message to all users in specific client in a specific period when the user log on SAP system; and we can do the same thing via using function module SM02_ADD_MESSAGE.
    But now we want to pop up a message to a specific user ID when somebody log on SAP via this ID, instead of all user IDs in the client. Please do we have any similar traction / function module / class method to to do this job??
    Thanks in advance.
    Joe

    Below code can be used to send a pop up message to all users who are logged on to the
    system.
    DATA: MESSAGE(128) VALUE 'Test message'.
    DATA: OPCODE TYPE X VALUE 2.
    DATA: BEGIN OF USR_TABL OCCURS 10.
    INCLUDE STRUCTURE UINFO.
    DATA: END OF USR_TABL.
    CALL 'ThUsrInfo' ID 'OPCODE' FIELD OPCODE
    ID 'TAB' FIELD USR_TABL-SYS.
    LOOP AT USR_TABL.
    CALL FUNCTION 'TH_POPUP'
    EXPORTING
    CLIENT = SY-MANDT
    USER = USR_TABL-BNAME
    MESSAGE = MESSAGE
    EXCEPTIONS
    USER_NOT_FOUND = 1.
    ENDLOOP.
    In the above code just pass the desired user ID instead of All user ID's
    Edited by: harsh bhalla on Mar 26, 2009 2:14 PM

  • I keep getting an error message when trying to log on to FaceTime and iMessage on my iPad mini with wifi...could not sign in. Please check your network connection and try again. Help!

    I keep getting an error message when trying to log on to FaceTime and iMessage on my iPad mini with wifi...Could not sign in. Please check your network connection and try again. Help!

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    For non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
     Cheers, Tom

  • I get error message "unknown error" When trying to log on to itunes via pc, help please!

    I get error message "unknown error" When trying to log on to itunes via pc, help please!

    Hello, trolle56.
    Thank you for the question.  You may find these articles helpful in troubleshooting the error received with the iTunes Store. 
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/ts3297
    Cheers,
    Jason H. 

Maybe you are looking for

  • Lack supporting Sony RX100 II in Adobe Camera RAW

    Please, integrate full support Sony RX100 & RX100 II to Adobe Camera RAW. This is a very good and expensive cameras. I replace my Nikon D5100 with Sony RX100 II, and second gives better quality despite very small size. But support in Camera RAW limit

  • 10.2.0.424 search partial number in the call list doesn't work

    The scenario is this I remember I've been call from one number. I only remember one part of the digits Let's say 6532 I go to call list and go to use the search function No results, but scrolling the call list and wasting a lot of time, I see that I

  • Servlet Debugging

    I have an abstract servlet class extending HttpServlet; from that abstract class I have a few subclasses, but I cannot debug those subclasses within JDev, although they run fine on server? Is this a bug of JDev? I am using JDev 3.1.1.2

  • How to connect AD595 thermocouple amplifier?

    the picture below is my connection of the thermocoupler amplifier, i realise that that is no doted for me to guide as pin number 1,so i according the data sheet and assemble it, the orange colour wire is grounded n yellow colour wire is the voltage s

  • Why is Aperture folder structure ignored in iPhoto?

    I'm not sure about others but I would like to use iPhoto and Aperture together because I find iPhoto to be a lot quicker to open and work than Aperture, so I would like to be able to do most of my work there, and then use Aperture for more heavy edit