Third Party X-Fi Mode Switching Softw

I recently ran across an issue which is documented in this thread:
http://forums.creative.com/creativelabs/board/message?board.id=soundblaster&message.id=53809
What I found out raised an interesting possibility: it should fairly easy to make software to switch modes with X-Fi sound cards. The community only needs to work together to make some third party software to get the job done.
When modes are switched for the X-Fi, the following folder is utilized (on XP, at any rate):
C:\Documents and Settings\All Users\Application Data\Creative\Spi\
{00000005-00000000-00000007-000002-00000005-00202}\Modes
The files which are involved are named as such:
CTXFICMu.ini
CTXFICMu.rfx
CTXFIEMu.ini
CTXFIEMu.rfx
CTXFIGMu.ini
CTXFIGMu.rfx
The two 'CTXFICMu' files correspond to Audio Creation Mode, while the 'CTXFIEMu' files match Entertainment Mode and the 'CTXFIGMu' files match Game Mode.
The *.ini files are text files containing mixer information for each mode, and the *.rfx files are binary files. I suspect the *.rfx files may be related to the programmable nature of the audio chip, but I haven't messed around with them too much since it is outside the scope of my abilities.
The CTXFISPI.EXE process is making the reads and writes to these files, which seems to indicate that it does the dirty work when it comes to changing the modes of the card.
If the community can determine how to encourage CTXFISPI.EXE to switch modes (or if Creative decides to be forthcoming with the details), then third party apps can be developed to make the switch easier (tray app menu), faster (no animations), more efficient, and seamless (a scriptable method for changing modes would be great!).
Additionally, it shouldn't be too hard to make software which allows for per user mixer settings with the X-Fi. It is only a matter of switching in a particular user's *.ini and *.rfx files to the Modes directory before CTXFISPI.EXE loads them at log in, and then saving the same files again at log off.
So, I have a request for Creative: would you please release some documentation about how to switch modes programmatically or even from the command line?
I'm also throwing out this challenge to the community: if Creative is unable or unwilling to release the information needed, then let's get under the hood of the X-Fi and decode mode switching ourselves. If someone can expose how mode switching works, then I would be more than happy to whip up an interface for it.
Drailex_Mauder

I have created a quick fix for the lack of mode switching options currently available. I would like to program something more feature rich in C, but for now VBScript is better than nothing. If we don't get a leg up from Creative, it may be a while as I will have to look into reverse engineering the software. This would require learning some new skills on my part.
These scripts work by loading the Creative Audio Console and pushing the appropriate keystrokes to change the mode. It is a dirty way to get the job done, but until more is known about how to change modes through CTXFISPI.EXE these scripts will have to do.
I am releasing these scripts under a BSD licence, which appears at the end of this message. Kinda silly for such small blocks of code, but it's there more to cover my assets with the legal disclaimer than anything else.
Copy each block of code into a separate text file and make sure that the file name ends in a VBS extension. Any up to date 2000 or XP machine should run these scripts no problem. I have placed shortcuts to the scripts in my Quick Launch Toolbar so that I can quickly change modes.
You could also add them to a script which switches to game mode, runs your game, and then switches back to entertainment mode.
VERY IMPORTANT: The Creative Audio Console must not be running when you run one of these scripts, otherwise the script will randomly change your settings.
And once again, if anyone can assist in determining how to coax CTXFISPI.EXE into switching modes, this will take things a long way to creating 3rd party mode switching software which meets the goals of my original post in this thread.
----- Start Of "Entertainment Mode.vbs" -----
Option Explicit
Dim WshShell
Set WshShell = CreateObject("WScript.Shell" )
' Start up the Audio Console
WshShell.CurrentDirectory = "C:\Program Files\Creative\AudioCS"
WshShell.Run("CTAudCS.exe" )
' On slower machines the Sleep value may need to be increased.
WScript.Sleep(500)
' Send the keystrokes to change the mode
WshShell.SendKeys("{TAB}" )
WshShell.SendKeys("{TAB}" )
WshShell.SendKeys("{RIGHT}" )
WshShell.SendKeys("{TAB}" )
WshShell.SendKeys("{TAB}" )
WshShell.SendKeys("{UP}" )
WshShell.SendKeys("{UP}" )
WshShell.SendKeys("{TAB}" )
WshShell.SendKeys("{ENTER}" )
WScript.Quit(0)
----- End Of "Entertainment Mode.vbs" -----
----- Start Of "Game Mode.vbs" -----
Option Explicit
Dim WshShell
Set WshShell = CreateObject("WScript.Shell" )
' Start up the Audio Console
WshShell.CurrentDirectory = "C:\Program Files\Creative\AudioCS"
WshShell.Run("CTAudCS.exe" )
' On slower machines the Sleep value may need to be increased.
WScript.Sleep(500)
' Send the keystrokes to change the mode
WshShell.SendKeys("{TAB}" )
WshShell.SendKeys("{TAB}" )
WshShell.SendKeys("{RIGHT}" )
WshShell.SendKeys("{TAB}" )
WshShell.SendKeys("{TAB}" )
WshShell.SendKeys("{UP}" )
WshShell.SendKeys("{UP}" )
WshShell.SendKeys("{DOWN}" )
WshShell.SendKeys("{TAB}" )
WshShell.SendKeys("{ENTER}" )
WScript.Quit(0)
----- End Of "Game Mode.vbs" -----
----- Start Of "Audio Creation Mode.vbs" -----
Option Explicit
Dim WshShell
Set WshShell = CreateObject("WScript.Shell" )
' Start up the Audio Console
WshShell.CurrentDirectory = "C:\Program Files\Creative\AudioCS"
WshShell.Run("CTAudCS.exe" )
' On slower machines the Sleep value may need to be increased.
WScript.Sleep(500)
' Send the keystrokes to change the mode
WshShell.SendKeys("{TAB}" )
WshShell.SendKeys("{TAB}" )
WshShell.SendKeys("{RIGHT}" )
WshShell.SendKeys("{TAB}" )
WshShell.SendKeys("{TAB}" )
WshShell.SendKeys("{UP}" )
WshShell.SendKeys("{UP}" )
WshShell.SendKeys("{DOWN}" )
WshShell.SendKeys("{DOWN}" )
WshShell.SendKeys("{TAB}" )
WshShell.SendKeys("{ENTER}" )
WScript.Quit(0)
----- End Of "Audio Creation Mode.vbs" -----
* Copyright (c) 2006 Breen Ouellette
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* . Redistributions of source code must retain the above copyright notice,
* this list of conditions, and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions, and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.Message Edited by Drailex_Mauder on 03-4-20060:35 PM
Message Edited by Drailex_Mauder on 03-4-20060:56 PM

Similar Messages

  • Recommended third-party SSD brands

    Looking for recommendations for third-party SSD manufacturers to switch from my MBP Mid-2010 13'" internal hard drive. What have been your experiences to switching to a solid-state drive from a Mac originally bought with regular hdd's?

    It will benefit, but not as much because it only has a 3.0 Gb/s bus. You need a 6.0 Gb/s bus to get the maximum capabilities of the SSDs made for that bus. The vendors you mention are all highly reliable.
    Note that if you install it yourself then you lose all future support from Apple.

  • Change item category Display mode  in sales order (Third Party )

    Hi all,
    I am creating sales order with reference to sales contract but at the time of sales order we don't have enoff stock to deliver to customer , so we have deiced to Third party sales process
    But the problem is while creating a sales order with reference to Sales contract the line item of the sales order in grad Mode ( Not changeable mode )
    Can any one guide me how sales order line item should be in active mode  so i can change the Item category as a TAS third party item category
    Help me regards this
    Thanks
    Rajesh

    Hi all.
    Thanks for response
    I maintain all configuration, But the problem is while creating Sales Order with reference to Contract
    the Sales Order line item in grad Mode i am unable to change item category as TAS
    i mean TAN is on Display Mode
    and we are using Varient config  for that material
    Please guide me where i need to Configure so system should allow me change item category in sales order please guide me
    Thanks
    Rajesh
    Edited by: RAJESH KUMAR on Jun 16, 2009 10:23 PM

  • PLEASE HELP!! I've used iWeb to create multiple sites, all published to third party servers.  The very last site I made changes to is showing up in any domain file I open - despite their different names and locations on my iMac.  I just switched to Lion.

    Please HELP!!  I just switched to Lion.  I have created multiple websites using iWeb  3.0.4 and despite my having saved their 'domain' files in various locations and using different filenames, upon opening the domain files I keep getting the very last site I published.  All the sites were published to third party servers.  The domain files (still have a preview that look correct and have different file sizes) but keep going back to the last site published. HELP ME PLEASE!! Are the old files still available?!!

    In Lion the Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    To open your domain file in Lion or to switch between multiple domain files Cyclosaurus has provided us with the following script that you can make into an Applescript application with Script Editor. Open Script Editor, copy and paste the script below into Script Editor's window and save as an application.
    do shell script "/usr/bin/defaults write com.apple.iWeb iWebDefaultsDocumentPath -boolean no"delay 1
    tell application "iWeb" to activate
    You can download an already compiled version with this link: iWeb Switch Domain.
    Just launch the application, find and select the domain file you want to open and it will open with iWeb. It modifies the iWeb preference file each time it's launched so one can switch between domain files.
    WARNING: iWeb Switch Domain will overwrite an existing Domain.sites2 file if you select to create a new domain in the same folder.  So rename your domain files once they've been created to something other than the default name.
    OT

  • Any way of temporarily switching off third party effects in Effects List?

    I have a load of third party effects and the makers' names are cluttering up the Effects List when sometimes I just want to see FCP X's original shipped effects.
    I know I can physically remove the effects but that involves shutting down FCP X.
    Is there any way of quickly "switching" them on or off?
    I very much doubt it but would be very pleased if there is a way.
    I know that by not selecting the makers' names I will not see the effects but what I want to do is temporarily get rid of the makers' names in the list.

    This tool from Digital Rebellion http://www.digitalrebellion.com/promaintenance/ but it is not cheap. Has many functions for FCPX, in my opinion a must have.

  • I Have Iphone 4... I had purchased from any store in second hand... and the third party whose this iphone not in contact with me and my phone goes to lose mode.. how can I activate my iphone

    I Have Iphone 4...
    I had purchased from any store in second hand...
    and the third party whose this iphone not in contact with me and my iphone in lose mode..
    how can I activate my iphone?????Plz help me...
    <Email Edited By Host>

    Digant Mevada wrote:
    can possible to contact apple server manager tu know my id or anythig do..??
    There is nothing you can do except return iPhone & get your money back.
    You will not be able to use the iPhone.
    Apple will not help you.
    -> Find My iPhone Activation Lock: Removing a device from a previous owner’s account

  • Why am I getting redirected to the MSN homepage (when logging out of hotmail) with third party cookies not enabled? And why are exceptions to cookies being cleared in private browsing mode?

    I have the latest version of Firefox, I use Private browsing with Allow cookies but not third party cookies. Recently I have begun to be redirected to the MSN homepage after logging out of hotmail and whenever I add MSN cookies to the exceptions in cookies the list gets deleted. Can anyone tell me why, when blocking third party cookies should prevent that?

    Two initial thoughts:
    (1) If you look at the cookie names and content in the View Cookies dialog, are they the ordinary scramble of different names and values, or do they look like "opt-out" cookies? Some security software or add-ons may restore opt-out cookies after you clear them.
    (2) If you have any extensions that make requests to those sites, it's possible they are bypassing private browsing mode, although I would hope not. Hmmm.
    Unfortunately, unlike history where you can see the time that an entry was added, it is difficult to figure out when a cookie was set. But there are many cookie add-ons that might provide insight.
    Alternately, you could go directly to the cookies.sqlite database using the SQLite Manager extension. This is on the nerdy side, but manageable.
    (1) Install SQLite Manager from: https://addons.mozilla.org/firefox/addon/sqlite-manager/
    (2) The extension adds an item to the Tools menu. If you do not normally use the classic menu bar, tap the Alt key to display it temporarily or press Alt+t to pull down the Tools menu.
    SQLite Manager may suggest a particular database, particularly on your second and later uses. You can skip that and it will open a new window.
    (3) On the toolbar (first screen shot), choose the cookies.sqlite database and click Go. This should display the database entries for all your cookies (second screen shot).
    (4) Select the following SQL query text:
    SELECT host AS Site, datetime(creationTime/1000000,'unixepoch') AS Created, datetime(expiry,'unixepoch') AS Expires
    FROM moz_cookies
    ORDER BY creationTime, host
    (5) Click the Execute SQL tab, paste the query, then click Run SQL. You should get a list of sites in order by the date their cookies were set (third screen shot).
    Are the dates all fresh? If they are older, something may be rolling back your cookie clearing.

  • Third party mod sandboxing...

    I am wanting to be able to allow third party mods to be pluged into my game however since i cannot garentee that the mods will not access the local disk or do other bad stuff, is it possible to 'sandbox' the code of the mod?
    Basically i would want to allow the mod code the same functionality as would an applet.

    It would throw an exception if they attempt to call any method that calls checkPermission(...), (File, Socket, ClassLoader, etc).
    I'm not sure why you think I/O should not be sandboxed, but you can check the type of Permssion and if the permission asks to read a file from a certain location then you can decide not to throw an exception. You can basically tailor it to the level of detail required by your application.
    There is a lot of potential for Java. For example, if every application was written in Java then for each application you could assign a list of permissions. Then if any application tried to access a protected resource then the user could be made aware of this. This would get rid of the spyware problem and probably some other problems that will continue to cause problems for users.

  • RED Workflow questions with Mac Pro (including third party plugins)

    Hello all,
    I’ve been searching many forums for the better part of a day trying to get some workflow questions sorted. I’m experiencing (very) slow export times, and mediocre playback for a machine that should be screaming fast.
    Here is what I’m working with:
    2014 Mac Pro
    -2.7 GHz 12-core intel xeon E5
    -64GB Ram
    -Dual AMD FirePro D700 6GB
    -1TB Flash Storage
    Editing all footage off 96TB Raid 6 mini-sas server (getting about 1100mbs read/write rate according to AJA system test) which is faster than any Thunderbolt/TB2 drive array I have.
    Media I work with is footage from the RED Epic (normally 5K) as well as DSLR footage from the 5d.
    Software:
    -PrPro CC 2014 (8.1)
    -Magic Bullet Looks 2.5.2
    My question(s) pertains to RED post-pro workflow in combination with third party plug-ins and the different approaches to make it more efficient.
    Right now, majority of the clients need a 1080p HD master, and they are generally anywhere from 2-8 minutes (usually). So my sequence settings are as follows:
    Video:
    Editing Mode: RED Cinema
    Size: 1920 x 1080
    Audio: 48Hz
    Video Previews
    Preview File Format: I-Frame Only MPEG
    Codec: MPEG I-Frame
    1920x1080
    Maximum Bit Depth unchecked
    Maximum Render Quality unchecked
    Composite in Linear Color checked
    Export Settings
    H.264
    1920x1080
    VBR 1 pass
    Target Bitrate 12mbs
    Max bitrate 12mbs
    Maximum render quality/depth/previews unchecked
    Issues I have:
    -Playback is fine at 1/2 or even full, but once effects (especially magic bullet looks) start to go on the clips, it’s very choppy and has difficult playback at 1/4
    -Export times (especially with magic bullet looks) will take the better part of 1-4 hours for a video that is 3-6 minutes long. This doesn’t seem like it should be the case for a maxed out MacPro
    So my questions are:
    Do these seem like the right sequence/export settings for mastering at 1080p? If not, what would you suggest?
    Would using offline editing help at all?
    Do you place your effects on adjustment layers?
    Is there anyway to improve export settings when using an array of filters?
    Have you stopped using third party plugins for their inefficiency in unreliability and switched to more integrated applications like SpeedGrade?
    Is there any other tweaks that you would suggest for RED workflow with PrPro?
    Should I consider switching to FCPX or (besides the iMovie-likeness) does it carry problems of its own?

    Hi This Is Ironclad,
    thisisironclad wrote:
    Hello all,
    I’ve been searching many forums for the better part of a day trying to get some workflow questions sorted. I’m experiencing (very) slow export times, and mediocre playback for a machine that should be screaming fast.
    The biggest issue is that most people have is that updating OS X causes certain folders to be set to Read Only. See this blog post: Premiere Pro CC, CC 2014, or 2014.1 freezing on startup or crashing while working (Mac OS X 10.9, and later).
    thisisironclad wrote:
    Hello all,
    I’ve been searching many forums for the better part of a day trying to get some workflow questions sorted. I’m experiencing (very) slow export times, and mediocre playback for a machine that should be screaming fast.
    Here is what I’m working with:
    2014 Mac Pro
    -2.7 GHz 12-core intel xeon E5
    -64GB Ram
    -Dual AMD FirePro D700 6GB
    -1TB Flash Storage
    It's a nice base system. How about an additional speedy disk for media cache files. You also did not mention which version of OS X you are running.
    thisisironclad wrote:
    Software:
    -Magic Bullet Looks 2.5.2
    The Red Giant website does not indicate that this software is yet updated to work with Premiere Pro CC 2014.1 (8.1). Proceed with caution here.
    thisisironclad wrote:
    Issues I have:
    -Playback is fine at 1/2 or even full, but once effects (especially magic bullet looks) start to go on the clips, it’s very choppy and has difficult playback at 1/4
    I would not use this plug-in until you get the OK from the manufacturer.
    thisisironclad wrote:
    -Export times (especially with magic bullet looks) will take the better part of 1-4 hours for a video that is 3-6 minutes long. This doesn’t seem like it should be the case for a maxed out MacPro
    Again, I suspect your plug-in.
    Keep in mind that exports are largely CPU based but you can make sure that GPU acceleration is enabled for AME at the bottom of the Queue panel.
    thisisironclad wrote:
    So my questions are:
    Do these seem like the right sequence/export settings for mastering at 1080p? If not, what would you suggest?
    It's OK.
    thisisironclad wrote:
    Would using offline editing help at all?
    No need when you should be able to edit natively. Relinking might also be an issue.
    thisisironclad wrote:
    Do you place your effects on adjustment layers?
    That's one way you can do it with the benefit of being more organized.
    thisisironclad wrote:
    Have you stopped using third party plugins for their inefficiency in unreliability and switched to more integrated applications like SpeedGrade?
    I do. Of course, that's a preference.
    thisisironclad wrote:
    Is there any other tweaks that you would suggest for RED workflow with PrPro?
    Try the following:
    Sign out from Creative Cloud, restart Premiere Pro, then sign in
    Update any GPU drivers
    Trash preferences
    Ensure Adobe preference files are set to read/write(Hopefully you checked this out already)
    Delete media cache
    Remove plug-ins
    If you have AMD GPUs, make sure CUDA is not installed
    Repair permissions
    Disconnect any third party hardware
    If you have a CUDA GPU, ensure that the Mercury Playback Engine is set to CUDA, not OpenCLYou have AMD GPUs.
    Disable App Nap
    Reboot
    thisisironclad wrote:
    Should I consider switching to FCPX or (besides the iMovie-likeness) does it carry problems of its own?
    I really shouldn't answer that question.
    Hope this helps.
    Thanks,
    Kevin

  • IPhone 4 Warranty, Third Party Charger Errors

    Hi All,
    I am experiencing problems; speakers not working for iTunes, constant "This Acessory Not Optimized" message popping up, and charging difficulties, all likely due to a third party charger.  I am hesitant to send my phone in under the warranty, frankly because I don't have faith in my local Verizon representatives.  Has anyone sent their phone in under the 1-year warranty in similar circumstances?  What were the results?  Did they charge you for damage, or is this sort of error beyond that range?
    Any and all advice would be valuable.
    Thanks,
    -C

    vereyezuhn wrote:
    EmBee31404 wrote:
    Trust me if you have not had it the 14 days, The iPhone your going to want to return asap, I had mine on Friday and retuned it on Monday, It is cute mind you, However the keys as you aleready most likely know are so small your going to constantly make corrections as it will type in the wrong letter, I hated mine so bad I almost ran to the truck to return mine, and the battery life they say lasts a month, pfffft, it is most likely will last you a day if that, Mine in sleep mode went from 3/4 over night to null,
    The iPhone is actually one of the best smartphones in terms of touch sensitivity and correctness when typing. Just because YOU can't type on it or have large fingers, doesn't mean other people will have the same problem. And I don't know WHERE in the world you heard that the battery lasted a whole MONTH. That's insane! There's not a phone in the world whose battery lasts a month. A day is actually a long time for a battery to last with a smartphone.
    I am the one that posted about the month long battery, I had to redo my so called address to come back in and reply, notice but they deleted one of my emails I mentioned. it might have been a defect in the phone, However I was told those pens do not work by one rep as asked, as I would have used it longer, and for the battery? another rep told me that she only charges hers once a month and it had a  long battery life, I did think to self, hmmmm a whole month she is filling me full of organic material Like I tried to post once, It could be very well the phone and I am not ruling it out as far as trying it maybe some other time, It just was not what the rep sales pitch was, I do think they could improve on the headset or the wired piece as that gave me a ton of problems using it, but again it could have been the bad apple in the bunch, {No pun intended} but I returned mine fast, Just was really more then I needed and again the sales pitch was very different then what I received, and I can honestly say each person you call pretty much has a different approach, like today I got some results on a re-order by asking to speak to the supervisior, But wish all you that have it good luck, Just was not the kind of phone I liked, oh yes, another rep told me it had to feel the heat of your finger to click on the key pads, that is why she said the pens did not work, however noticed someone in the car a friend using one of those pens on her samsung galaxy she got from T-Mobile, and no, no way on this earth am I switching carriers

  • Open Directory, third party LDAP search path problem on Snow Leopard

    Happy new year folks,
    I ran into an interesting problem this past week in regards to a third party LDAP directory in the Search path (which used to work on previous versions). The issue brings the server to its knees eventually. I'm still digging through the logs, but here's the general breakdown...
    1. Add third-party LDAP to the OD node list. This has always worked on previous versions, and appears to still work at the most basic level. I can navigate the node with DSCL, read records, etc.
    1. Add third-party LDAP to the OD search path.
    2. Wait a few minutes....
    3. The server begins to slow down. Apache, SSH, ServerAdmin service stop responding. I'm able to run "top" briefly, which shows an increase of threads.
    4. Restart the server and quickly remove the directory from the OD search path
    5. Server goes back to being rock solid with very nice response times for Apache, SSH, ServerAdmin, etc.
    If anyone has any debugging suggestions, or has seen this before, let me know.
    Jaime
    --- Below is some console output leading up to the chaos. Before adding to search path, everything looks good --------------------
    bash-3.2# dscl
    Entering interactive mode... (type "help" for commands)
    read /LDAPv3/ldap.itd.umich.edu/Users/jaimelm cn
    dsAttrTypeNative:cn:
    Jaime Magiera
    Jaime L Magiera 1
    Jaime L Magiera
    --- Add to Search Path, which hangs ------------------------------------------------------------------------------
    bash-3.2# dscl /Search -append / CSPSearchPath /LDAPv3/ldap.itd.umich.edu
    --- DSCL in debug mode contains the following ----------------------------------------------
    2010-01-01 19:26:25 EST - T[0x00000001037A5000] - Client: ipfw, PID: 1097, API: libinfo, Server Used : libinfomig DAR : Procedure = getprotobynumber (13) : Result code = 0
    2010-01-01 19:26:25 EST - T[0x00000001037A5000] - Client: sso_util, PID: 1103, API: dsFindDirNodes(), Server Used : DAR : 1 : Dir Ref = 16779669 : Requested nodename = /Search
    2010-01-01 19:26:25 EST - T[0x00000001037A5000] - Plug-in call "dsDoPlugInCustomCall()" failed with error = -14292.
    2010-01-01 19:26:25 EST - T[0x00000001037A5000] - Port: 27151 Call: dsDoPlugInCustomCall() == -14292
    2010-01-01 19:26:36 EST - T[0x00000001037A5000] - Client: dscl, PID: 1114, API: dsFindDirNodes(), Server Used : DAR : 1 : Dir Ref = 16779
    707 : Requested nodename = /LDAPv3/ldap.itd.umich.edu
    2010-01-01 19:26:36 EST - T[0x00000001037A5000] - Client: dscl, PID: 1114, API: dsFindDirNodes(), Server Used : DAR : 2 : Dir Ref = 16779707 : Result code = 0
    2010-01-01 19:26:36 EST - T[0x00000001037A5000] - Client: dscl, PID: 1114, API: dsVerifyDirRefNum(), Server Used : DAC : Dir Ref 167797072010-01-01 19:26:36 EST - T[0x00000001037A5000] - Client: dscl, PID: 1114, API: dsVerifyDirRefNum(), Server Used : DAR : Dir Ref 16779707
    : Result code = 0
    2010-01-01 19:26:36 EST - T[0x00000001037A5000] - Client: dscl, PID: 1114, API: dsFindDirNodes(), Server Used : DAC : Dir Ref 16779707 :
    Data buffer size = 1282010-01-01 19:26:36 EST - T[0x00000001037A5000] - Client: dscl, PID: 1114, API: dsFindDirNodes(), Server Used : DAR : 1 : Dir Ref = 16779
    707 : Requested nodename = ConfigNode2010-01-01 19:26:36 EST - T[0x00000001037A5000] - Client: dscl, PID: 1114, API: dsFindDirNodes(), Server Used : DAR : 2 : Dir Ref = 16779
    707 : Result code = 0
    2010-01-01 19:26:36 EST - T[0x00000001037A5000] - Client: Requesting dsOpenDirNode with PID = 1114, UID = 0, and EUID = 0
    2010-01-01 19:26:36 EST - T[0x00000001037A5000] - Client: dscl, PID: 1114, API: dsOpenDirNode(), Configure Used : DAC : Dir Ref = 16779707 : Node Name = /Configure
    2010-01-01 19:26:36 EST - T[0x00000001037A5000] - Client: dscl, PID: 1114, API: dsOpenDirNode(), Configure Used : DAR : Dir Ref = 1677970
    7 : Node Ref = 33556926 : Result code = 0
    2010-01-01 19:26:36 EST - T[0x00000001037A5000] - Client: dscl, PID: 1114, API: dsVerifyDirRefNum(), Server Used : DAC : Dir Ref 16779707
    2010-01-01 19:26:36 EST - T[0x00000001037A5000] - Client: dscl, PID: 1114, API: dsVerifyDirRefNum(), Server Used : DAR : Dir Ref 16779707 : Result code = 0
    2010-01-01 19:26:36 EST - T[0x00000001037A5000] - Client: dscl, PID: 1114, API: dsGetDirNodeInfo(), Configure Used : DAC : Node Ref = 33556926 : Requested Attrs = dsAttrTypeStandard:OperatingSystemVersion : Attr Type Only Flag = 0
    2010-01-01 19:26:36 EST - T[0x00000001037A5000] - Client: dscl, PID: 1114, API: dsGetDirNodeInfo(), Configure Used : DAR : Node Ref = 33556926 : Result code = 0
    2010-01-01 19:26:36 EST - T[0x00000001037A5000] - Client: dscl, PID: 1114, API: dsGetDirNodeInfo(), Search Used : DAC : Node Ref = 33556924 : Requested Attrs = dsAttrTypeStandard:LSPSearchPath : Attr Type Only Flag = 0
    2010-01-01 19:26:36 EST - T[0x00000001037A5000] - Client: dscl, PID: 1114, API: dsGetDirNodeInfo(), Search Used : DAR : Node Ref = 33556924 : Result code = 0
    2010-01-01 19:26:36 EST - T[0x00000001037A5000] - Client: dscl, PID: 1114, API: dsDoPlugInCustomCall(), Search Used : DAC : Node Ref = 33556924 : Request Code = 444
    2010-01-01 19:26:36 EST - T[0x00000001037A5000] - Checking for Search Node XML config file:
    2010-01-01 19:26:36 EST - T[0x00000001037A5000] - /Library/Preferences/DirectoryService/SearchNodeConfig.plist
    2010-01-01 19:26:36 EST - T[0x00000001037A5000] - Have written the Search Node XML config file:
    2010-01-01 19:26:36 EST - T[0x00000001037A5000] - /Library/Preferences/DirectoryService/SearchNodeConfigBackup.plist
    2010-01-01 19:26:36 EST - T[0x00000001037A5000] - Setting search policy to Custom search
    2010-01-01 19:26:36 EST - T[0x00000001037A5000] - CSearchPlugin::SwitchSearchPolicy: switch - reachability of node </LDAPv3/127.0.0.1> retained as <true>
    2010-01-01 19:26:36 EST - T[0x000000010070A000] - CSearchPlugin::CheckNodes: checking network node reachability on search policy 0x0000000000002201
    2010-01-01 19:26:36 EST - T[0x00000001037A5000] - CCachePlugin::EmptyCacheEntryType - Request to empty all types - Flushing the cache
    2010-01-01 19:26:36 EST - T[0x000000010070A000] - Client: Requesting dsOpenDirNode with PID = 0, UID = 0, and EUID = 0
    2010-01-01 19:26:36 EST - T[0x000000010070A000] - Internal Dispatch, API: dsOpenDirNode(), LDAPv3 Used : DAC : Dir Ref = 16777216 : Node Name = /LDAPv3/127.0.0.1
    2010-01-01 19:26:36 EST - T[0x000000010070A000] - Internal Dispatch, API: dsOpenDirNode(), LDAPv3 Used : DAR : Dir Ref = 16777216 : Node Ref = 33556929 : Result code = 0
    2010-01-01 19:26:36 EST - T[0x000000010070A000] - CSearchPlugin::CheckNodes: calling dsOpenDirNode succeeded on node </LDAPv3/127.0.0.1>
    2010-01-01 19:26:36 EST - T[0x000000010070A000] - Internal Dispatch, API: dsCloseDirNode(), LDAPv3 Used : DAC : Node Ref = 33556929
    2010-01-01 19:26:36 EST - T[0x000000010070A000] - Internal Dispatch, API: dsCloseDirNode(), LDAPv3 Used : DAR : Node Ref = 33556929 : Result code = 0
    2010-01-01 19:26:36 EST - T[0x0000000103181000] - mbr_mig - dsFlushMembershipCache - force cache flush (internally initiated)
    2010-01-01 19:26:36 EST - T[0x000000010070A000] - Client: Requesting dsOpenDirNode with PID = 0, UID = 0, and EUID = 0
    2010-01-01 19:26:36 EST - T[0x0000000103181000] - Membership - dsNodeStateChangeOccurred - flagging all entries as expired
    2010-01-01 19:26:36 EST - T[0x000000010070A000] - Internal Dispatch, API: dsOpenDirNode(), LDAPv3 Used : DAC : Dir Ref = 16777216 : Node Name = /LDAPv3/ldap.itd.umich.edu
    2010-01-01 19:26:36 EST - T[0x000000010070A000] - CLDAPNodeConfig::InternalEstablishConnection - Node ldap.itd.umich.edu - Connection requested for read
    2010-01-01 19:26:36 EST - T[0x000000010070A000] - CLDAPNodeConfig::FindSuitableReplica - Node ldap.itd.umich.edu - Attempting Replica connect to 141.211.93.133 for read
    2010-01-01 19:26:36 EST - T[0x0000000102481000] - CCachePlugin::SearchPolicyChange - search policy change notification, looking for NIS
    2010-01-01 19:26:36 EST - T[0x0000000102481000] - Internal Dispatch, API: dsGetDirNodeInfo(), Search Used : DAC : Node Ref = 33554436 : Requested Attrs = dsAttrTypeStandard:SearchPath : Attr Type Only Flag = 0
    ------- From another screen, I do "id jaimelm", which hangs ------------------------------------------------------------------------
    : Requested Rec Names = jaimelm : Rec Name Pattern Match:8449 = eDSiExact : Requested Rec Types = dsRecTypeStandard:Users
    2010-01-01 19:36:55 EST - T[0x00000001082A2000] - Internal Dispatch, API: dsGetRecordList(), Search Used : DAC : 2 : Node Ref = 33554436 : Requested Attrs = dsAttrTypeStandard:AppleMetaNodeLocation;dsAttrTypeStandard:RecordName;dsAttrTy peStandard:Password;dsAttrTypeStandard:UniqueID;dsAttrTypeStandard:GeneratedUID; dsAttrTypeStandard:PrimaryGroupID;dsAttrTypeStandard:NFSHomeDirectory;dsAttrType Standard:UserShell;dsAttrTypeStandard:RealName;dsAttrTypeStandard:Keywords : Attr Type Only Flag = 0 : Record Count Limit = 1 : Continue Data = 0
    2010-01-01 19:37:03 EST - T[0x0000000108325000] - Client: httpd, PID: 157, API: mbr_syscall, Server Used : process kauth result 0x0000000102022B30
    2010-01-01 19:37:03 EST - T[0x00000001083A8000] - Client: httpd, PID: 151, API: mbr_syscall, Server Used : process kauth result 0x0000000102022C50
    2010-01-01 19:37:05 EST - T[0x000000010842B000] - Client: httpd, PID: 203, API: mbr_syscall, Server Used : process kauth result 0x0000000102022D70
    2010-01-01 19:37:15 EST - T[0x00000001084AE000] - Client: httpd, PID: 994, API: mbr_syscall, Server Used : process kauth result 0x0000000102023890
    2010-01-01 19:37:26 EST - T[0x0000000108531000] - Client: httpd, PID: 198, API: mbr_syscall, Server Used : process kauth result 0x0000000102023980
    2010-01-01 19:37:31 EST - T[0x00000001085B4000] - Client: httpd, PID: 161, API: mbr_syscall, Server Used : process kauth result 0x0000000~

    Hi
    I'm in agreement with harry here but what I'm struggling to understand is why you are seeing this as a problem? I'm also struggling to see this as being a possibility in a single server environment if I understand your post correctly?
    Promotion to OD Master with all that entails absolutely rests on a properly configured and tested internal DNS Service. The Kerberos Realm's foundation (and with that the ability of the server to perform its function as KDC and offer LDAP services) entirely depends on what is configured in the DNS Service. This will include the server name, domain name and tld. The Kerberos Realm automatically configures itself using that information. Likewise the searchbase.
    Its more than possible to change the Realm name and with it the LDAP search base (in certain circumstances) and have an OD Master, however Kerberos won't start it won't need to as the KDC will be elsewhere. You generally see this when augmenting Windows AD with MCX. In that situation Realm name and search base will reflect what is set on the Active Directory. Client computers will use what is set there for contact and authentication information before looking at the OD Master for anything else.
    Does this help? Tony

  • Third party USB cable detected by IOS 7 update

    Yesterday I had a working Ipad2 and foolishly I allowed it to update itself. Big mistake!
    After all sorts of hangs, reboots etc I got it working again and then watched the battery drain before my eyes. Charged it overnight and after 12 hours it was at 75% and just about holding at that level. I have a third party USB cable and I borrowed my daughters OEM cable. When I plugged that in I could immediately see that it was charging normally BUT it also immediately disabled rotation and it is now stuck in landscape mode. I've tried switching the lock button to "Lock Rotation" and I see the icon on screen changing from locked to unlocked but it will not rotate. WHAT THE..............
    Detecting that I am using a cable purchased from another source and deliberately disabling my property without my authority borders on the criminal.
    Apple need to get it sorted.

    I'm sure Apple would love for you (and everyone else) to use their cables...that's a given. But I seriously doubt that any kind of intentional "crippling" would be done to anyone's unit in some way because they used a third-party cable. Seems like the way it's setup now, if a third-party cable is detected, you'll get an on-screen message that the cable is detected as such and you may have issues when using it.
    Try the cable again and if it faults the rotation function in the same way, then you can decide if you want to continue using the cable if it is indeed causing this same fault consistently. Otherwise, it could have just been a coincidence.

  • AX as client with third party modem/router

    Like others, I'm having trouble getting my AX to join an existing network from my third party modem/router (in this case a Siemens SE 515 dsl). After 2 days of sifting posts, changing settings and reset after reset, I'm about to take the thing back or just toss it out the window. I really only want to use the AX for AirTunes but do want to be able to surf at the same time.
    My modem/router is set as PPPoE with login details and PPPoE pass-through is enabled, as is NAT. The modem is set to get IP address automatically. WEP-128 is on and I've activated MAC access control (and am sure it's the correct id for the Airport). It's set for DHCP in the range 192.168.1.xx. WDS is activated and the router detects other devices around the place.
    In Network settings on my Powerbook I've selected PPPoE and also entered the login details here. In the TCP/IP tab, IPv4 is automatically set to PPP and the computer gets an IP address but it's in 84.xxx... range. Internet access works fine when I use these settings.
    Now, reset the AX, in Airport Admin I set it to client (I don't need to extend the network), entered the WEP key and selected the router network name from the pop-up menu. In the Internet tab I select DHCP, in music tab AirTunes is on and I've entered a speaker name. Click update, then...
    Nothing happens.
    Well, not quite. The orange light on the AX is flashing. When I go into iTunes, the Airport is listed in the pop-up at bottom right but when I select it, iTunes says it is trying to connect and, after a while, fails. Airport Admin can no longer find the AX either.
    My hunch is that this is something to do with IP addresses but I really have no idea. Any hints gratefully received.

    1. your modem/router should not have "PPPoE pass-through" enabled. The PPPoE connection with your ISP must be handled by the modem/router itself - not by your Mac. The modem/router should be functioning as a NAT router, and all the wireless clients (like your Mac and the Airport Express) of the modem/router should be connecting to it using DHCP.
    2. I don't know why you activated WDS on the modem/router. It isn't necessary, and whatever WDS flavor is supported by this modem/router won't be supported by the Airport Express. Turn it off.
    3. On the Powerbook, in System Preferences->Network->Show Airport - (a) under the PPPoE tab the box to "connect using PPPoE should NOT be checked and (b) under the TCP/IP tab the only selection should be to configure using DHCP.
    Before proceeding to the next steps, you must now make sure your Mac is still able to access the internet wirelessly.
    4. Do a factory default reset of the Airport Express. Temporarily switch wireless network connections on the Mac from your modem/router to that of the Airport Express. Run the Airport Admin Utility. In the Airport Admin Utility, select the mode to be "join an existing wireless network". Below that, type in the SSID of your modem/router. Enter the same WEP type and WEP key as used on your modem/router. Make any other configuration changes required under the Music tab, then update settings to the Airport Express. When finished, switch the wireless network connection on the Mac back to that of your modem/router.
    5. If you still have trouble, remove all security (MAC address filtering and WEP) from your modem/router and see if you can then get the Airport Express to connect as a client.

  • Facebook does not update "likes," that people "like," after setting Facebook to an exception for "Third Party Cookies"

    I recently changed all my Bookmarks to sites that are exceptions for third party cookies and turned off the acceptance of third party cookies. Facebook will not update any "likes" I get until after I reload the page. It also will not allow me to upload pictures, it says that I am not logged in which is really odd. Is this because I have switched to the https://facebook .com?

    '''Try the Firefox Safe Mode''' to see how it works there. The Safe Mode is a troubleshooting mode, which disables most add-ons.''
    ''(If you're not using it, switch to the Default theme.)''
    * You can open the Firefox 4.0+ Safe Mode by holding the '''Shift''' key when you use the Firefox desktop or Start menu shortcut.
    * Or use the Help menu item and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Don't select anything right now, just use "'Start in Safe Mode"''
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shift key) to open it again.''
    '''''If it is good in the Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one.
    Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''

  • X-Fi Mode Switching and XP File Permissi

    I have my file permissions locked down pretty tightly for all accounts except the Administrator. This is great for preventing major file system meltdowns whenever my wife picks up an email virus, but it can also make trouble now and then. The X-Fi appears to fall into the file restrictions trap.
    The card: XtremeMusic
    The issue: I cannot change the current mode unless I am running an account with unlimited write access to my hard dri've (in this case, my administrator account).
    I have determined this is a file permissions problem by creating an account which is part of the administrators group, but which has limited write access to the hard dri've. If it was a registry problem then this test account would switch modes no problem since it has the same access to the registry as any administrator. Additionally, if I give unlimited write access to any account which can't switch modes, it suddenly can switch modes no problem.
    I have tried making the Creative folder in 'Program Files' write accessible by all user accounts, but this does not do the trick. There are several Creative files within the 'Windows' folder, and I have a suspicion that I need to give write access to something here, but it is not immediately self evident.
    Does anyone know which files and folders specifically require write access for X-Fi mode switching to work? Is there any documentation about how mode switching is achieved (write a file, change a registry value, push data directly to the card)?
    Thanks.
    Drailex_Mauder

    pjt23,
    Funny you should mention that, I continued my search for the answer while waiting for potential replies, so I downloaded FileMon and picked away at the output. My discovery was useful.
    It seems that when modes are changed CTXFISPI.EXE reads and writes files in this directory:
    C:\Documents and Settings\All Users\Application Data\Creative\Spi\
    {00000005-00000000-00000007-000002-00000005-00202}\Modes
    If you think like me, you might have made the 'All Users' folder read only to prevent the technically inept members of your household from breaking things. Unfortunately, this prevents CTXFISPI.EXE from reading and writing the files it needs to change modes.
    To fix this scenario, you don't need to make the entire 'All Users' folder generally writable, you only need to make sure that the above 'Modes' subfolder is writeable by all users that need to change modes. Most likely, you will want to give either 'Everyone' or 'Authenticated Users' full access to this folder.
    If the reader doesn't know how to do this then it probably doesn't apply (since the file permissions should be set as their defaults), however, if you want to learn something new then I suggest you search "xp file permissions tutorial" on Google and do some reading.
    Of course, this information will only be relevant for Windows XP Pro users (and maybe Windows 2000, but I haven't confirmed). Sorry if you have XP Home, but setting file permissions is a real drag which requires you to boot into safe mode. It is highly unlikely that file permissions are your problem if you can't switch modes when using XP Home.
    The interesting part of all this is that it implies that there must be a way to invoke CTXFISPI.EXE to make mode changes. If we can determine how it works, then the community can work on third party apps which allow mode changes through scripts or a tray app menu.
    I'm going to spawn a new thread with this information to see if it goes anywhere.
    Drailex_Mauder

Maybe you are looking for