Connecting to 2012 localDB from VBA

I have been having a very frustrating time trying to connect to a localDB database from Excel VBA.
I have created a database using Visual Studio 2012 Express and in the IDE the database seems fine. I can create data and query it without problem.
In Visual Studio the Connection Properties windows shows:
Name:                     D:\FISKDEV_EXCEL\FISKDBSOLN\FISKDBSOLN\FISKDB.MDF
Connection String:    Data Source=(LocalDB)\v11.0;AttachDbFilename=D:\FiskDev_Excel\FiskDBSoln\FiskDBSoln\FiskDB.mdf;Integrated Security=True
Provider:                 .NET Framework Data Provider for SQL Server
Primary File Path:     D:\FiskDev_Excel\FiskDBSoln\FiskDBSoln\FiskDB.mdf
I then try to connect to the automatic instance with the following code:
Dim connStr As String
Dim conn As ADODB.Connection
connStr = "Server=(localDB)\v11.0;AttachDBFilename=D:\FiskDev_Excel\FiskDBSoln\FiskDBSoln\FiskDB.mdf;Integrated Security=True"
Set conn = New ADODB.Connection
conn.ConnectionString = connStr
conn.Open
However the Open fails with the following message:
"Run-time Error  '-2147217887(80040e21)'
Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done."
Any pointer to what I am doing wrong would be greatfully received.

Hi Olaf,
I've changed the connection code to the following
Dim connStr As String
Dim conn As ADODB.Connection
'connStr = "Server=(localDB)\v11.0;AttachDBFilename=D:\FiskDev_Excel\FiskDBSoln\FiskDBSoln\FiskDB.mdf;Integrated Security=True"
connStr = "Provider=SQLOLEDB;Data Source=(localDB)\v11.0;Initial Catalog=FiskDB;Integrated Security=SSPI"
Set conn = New ADODB.Connection
conn.ConnectionString = connStr
conn.Open
and now get the following Message:
Run-Time Error '-2147467259 (80004005)
[DBNETLIB][ConnectionOpen (Connect().]SQL Server does not exist or Access denied.
All my installations have been done under a User Account with Admin privileges and I have not explicitly set any rights at all. So I presume all the defaults were applied and since I am executing the above code under the same user account I also presume
that the 'access denied' does not apply. So what is that that this code can't find - the localDB instance? ( to which I thought it attached automatically). Are there any suggestions on what I might try?
I've also run the above with
Initial Catalog=D:\FiskDev_Excel\FiskDBSoln\FiskDBSoln\FiskDB.mdf
but got the same result

Similar Messages

  • Connect from VBA 64 bit to Oracle from windows 7 64bit

    Hi,
    We are trying to connect from Autocad VBA 64 bit to Oracle 10g server from windows 7 64bit OS.
    Toad can connect to Oracle without any issue.
    I installed 10g 32 bit client and 11g 64 bit client.
    Please help me in installing and configuring any 64 bit provider to connect from vba. I tried ODAC but not any success until now.
    Regards,
    Shijith

    Hi Jenny,
    Thanks for replaying in quick time.
    I had solved my issue by installing the following.
    1) Oracle forms 6i
    2) Oracle 11g 32 bit client
    3) Oracle 11g 64 bit client
    4) ODAC 11g 32 bit
    5) ODAC 11g 64 bit
    And able to get a sucessful connection with the following connection string.
    Provider=OraOLEDB.Oracle;Password=dddd;Persist Security Info=True;User ID=dddd;Data Source=ddddd
    Is there is any better way to do it? It is realy pitty that we have to install more than 2GB of client coponents to get a oracle connection from client side.
    Please suggest a best practice.
    Regards
    shijith

  • Cannot connect to Domain\administrator from ny RDC after assigning an active directory domain to my server

    hi, I'm using windows server 2012 R2 and I was Just wondering how to make the Remote Desktop enable connection through domain\administrator before actually creating the domain... In other words, I wanted to create an Active Directory Domain User and connect
    to the server from the RDP. The problem is that I can only connect through the RDP considering that I'm using Windows Azure, so the physical server isn't actually sitting on my desk... Anyway when I create an AD DS the system automatically reboots and I'm
    not able to connect to it anymore, so all I need to do right now is enable somehow the Remote Desktop Services to connect through "Domain\Administrator" before I actually create the AD DS and assign it to my server so that when the system reboots
    and I open the RDP I can connect to the server.
    Thanks in advance.

    Hi,
    Thank you for posting in Windows Server Forum.
    As per your comment, it seems that you are managing the server with .RDP file. I can suggest you to run
    "Remote Desktop Connection Manager” for maintaining server. With that you can specify the credential for domain\administrator and when you setup the AD DS, after that you can open the connection through domain\administrator and not as local user.
    Hope it helps!
    Thanks,
    Dharmesh

  • Call BEX-Query from VBA with BEX-automatic login?

    Hi,
    I'm trying to call a query from VBA. I have two problems/questions:
    1. Automatic login?
    I want to do an automatic login. I found this peace of code here, but I get an error:
    Public Function  LogonToYourBW()
    ' create Logon & RFC-Handle
    logonToBW = False ‘ clear connect Flag the flag can be used to find out if connected or not
        'load SAP functionality by opening BEX file ( use your installation path)
            Workbooks.Open (“c:\sappc\bw\sapbex.xla”)
        With Run("sapbex.xla!sapbexGetConnection") ‘ call the connection
           ' Set the params for Auto logon
           .client = “YOUR CLIENT NO”
           .user = “YOUR BW USER”
           .Password = “YOUR BW PWD” ‘ I recommend to create a dummy reporting user for this task
           .Language = “YOUR LANGUAGE YOU LIKE TO USE FOR QUERY DISPLAY ( i.E.  “EN”)”
           .SystemNumber = “YOUR SYSTEM NO” ‘
           .ApplicationServer = “YOUR SERVER Name OR IP-ADDRESS”
           .UseSAPLOgonIni = FALSE 'important for automatic connection
           .logon 0, True ‘ This will provide a dialog to appear
            If .IsConnected <> 1 Then
                .logon 0, False
                If .IsConnected <> 1 Then Exit Function
            Else
                Set g_oFunction = CreateObject("SAP.Functions")
                Set g_oFunction.Connection = g_oConnection
            End If
        End With
        Run "sapbex.xla!sapbexinitConnection" ‘ this will enable the connection you just created
        logonToBW = True
    End Function
    The error is by this row:
    Set g_oFunction.Connection = g_oConnection
    Object is needed! How is the g_oConnection-object defined?
    2. How can I pass values for the parameters from VBA?
    If I open the query usually from SAP-BEX-Toolbar, after selecting the query, I get a parameter mask, where I must put in a value. How can I this automatize from VBA? Has anybody a short samplecode for that?
    Thank you for your help
    Stefan
    [email protected]

    Peter and others:
    What I really want to do … is write a stand-alone application that I can run from windows scheduler … that queries our BW for sales data for certain items (in a tabular form) … and pulls that data into a VB recordset, or a .NET dataset … so that I can insert the rows into another database (SQL Server, or Access) … I already know how to do all the data movement to/from datasets and databases … I just cannot figure out how to programmatically grab this sales data from BW … our company has “workbooks” already set up that aggregate WW sales information by region (IE, there is a separate workbook for each region of the world) … I can manually go into the Excel interface, tell it which items to pull the sales info for, and it dumps the data into the worksheet (organized by customer, and then by cat #) …
    So, what I’d like to do is write an app that will pull data every week or so from the BW (from each region’s sales invoice detail “workbook”), and insert it into another database that we use for reporting other, non-sales, data.
    Thoughts on this ?  Is there another, non-BEx method that is better ?
    thanks !!

  • My iPad loses connection after waking away from router even in the next room over.

    I know it's just my iPad, as when other people with iPads are here (or even just with my iPhone), they still have their connection and mine is lost. Or when I go places, people will have their connection pretty far away from their router and my connection is lost. I have rebooted the iPad and nothing. My iPad screen cracked previously so I took it someplace to get it fixed, so I don't know if that has anything to deal with it? Help please!?

    Some things to try first:
    1. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    2. Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    3. Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    4. Go into your router security settings and change from WEP to WPA with AES.
    5.  Renew IP Address: (especially if you are droping internet connection)
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    6. Potential Quick Fixes When Your iPad Won’t Connect to Your Wifi Network
    http://ipadinsight.com/ipad-tips-tricks/potential-quick-fixes-when-your-ipad-won t-connect-to-your-wifi-network/
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    iOS 6 Wifi Problems/Fixes
    Wi-Fi Fix for iOS 6
    https://discussions.apple.com/thread/4823738?tstart=240
    How To: Workaround iPad Wi-Fi Issues
    http://www.theipadfan.com/workaround-ipad-wifi-issues/
    Another Fix For iOS 6 WiFi Problems
    http://tabletcrunch.com/2012/10/27/fix-ios-6-wifi-problems-ssid/
    Wifi Doesn't Connect After Waking From Sleep - Sometimes increasing screen brightness prevents the failure to reconnect after waking from sleep. According to Apple, “If brightness is at lowest level, increase it by moving the slider to the right and set auto brightness to off.”
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    How to Boost Your Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Boost-Your-Wi-Fi-Signal.h tm
    Troubleshooting a Weak Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/Troubleshooting-A-Weak-Wi-Fi-Sig nal.htm
    How to Fix a Poor Wi-Fi Signal on Your iPad
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Fix-A-Poor-Wi-Fi-Signal-O n-Your-iPad.htm
    iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Connect iPad to Wi-Fi (with troubleshooting info)
    http://thehowto.wikidot.com/wifi-connect-ipad
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    Wi-Fi or Bluetooth settings grayed out or dim
    http://support.apple.com/kb/TS1559
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • Install Both SQL Express 2012 & LocalDB on Same Dev PC?

    Q. How do I install both SQL Express 2012 & LocalDB 2012 on the same development PC?
    I tried running the LocalDB 2012 Wizard installer and it failed because I have a 'Higher Version' of SQL Express installed.
    I currently cannot run a web app using LocalDB unless I 'Attach' the database file in SQL Express 2012.

    Hi, you should be able to install both Express and LocalDB on the same machine.  Can you run the discovery report to show exactly what is on your machine from a SQL Server perspective?  Also, which version of Express and which version of LocalDB
    are you trying to install?
    Thanks,
    Sam Lester (MSFT)
    My Blog
    This posting is provided "AS IS" with no warranties, and confers no rights. Please remember to click
    "Mark as Answer" and
    "Vote as Helpful" on posts that help you. This can be beneficial to other community members reading the thread.

  • Connect to APEX database using VBA+ADO code in Microsoft Excel & Word?

    I am looking at APEX as a potential replacement for a growing reporting/analysis system. As yet I have not found a clear answer on an important question.
    The current system is a shared database and a collection of Microsoft Excel and Word templates. Each template contains underlying VBA code that establishes a direct connection to the database via OLE DB (i.e. ADODB objects in VBA via the OLE DB Provider for JET).
    Each template’s underlying VBA code executes stored procedures or queries as required, the results of which are returned as Recordset objects and rendered to the Excel worksheet or Word document. Similarly, in some cases, data entered into an Excel worksheet by a user can be submitted back to the database at the click of a button, again via Recordset objects.
    Now most of our templates could easily be ported to APEX. However, there is a strong preference that some of our templates continue to exist and maintain current functionality. So we have a requirement that Excel and Word can seamlessly and directly interact with an APEX database.
    Long question short – is there a way to establish a connection and retrieve/insert data from an APEX database using OLE DB (ADODB) in VBA, as described above? I understand that APEX sits ‘on top’ of a real Oracle database, and I know Oracle provides an OLE DB Provider (OraOLEDB) for Oracle databases. Would OraOLEDB do the trick, or is it not as simple as that?
    Many thanks for your insights on this,
    Michal

    The current system is a shared database and a collection of Microsoft Excel and Word templates. Each template contains underlying VBA code that establishes a direct connection to the database via OLE DB (i.e. ADODB objects in VBA via the OLE DB Provider for JET).
    Long question short – is there a way to establish a connection and retrieve/insert data from an APEX database using OLE DB (ADODB) in VBA, as described above? I understand that APEX sits ‘on top’ of a real Oracle database, and I know Oracle provides an OLE DB Provider (OraOLEDB) for Oracle databases. Would OraOLEDB do the trick, or is it not as simple as that?Hi,
    Apex gets installed as a separate schema in an existing database.
    So it will not in any way interfere with your existing setup. You can continue to connect directly to the database from your spreadsheets, call stored procedures from VBA/ADO, etc.
    - Morten
    http://ora-00001.blogspot.com

  • Calling RFC funtions from VBA

    Hi all,
    I would like to call RFC funtions from VBA, could you please advise on what library should I set reference to?
    A piece of sample code would also be highly appreciated.
    Thanks in advance.
    Tomas

    here is a small code sample using vbscript
    <html>
    <head>
    <meta http-equiv="Content-Language" content="en-us">
    <title>RFC Example - THUSRINFO</title>
    <script language="VBScript">
    sub get_cust_data()
    dim fns
    set fns = createobject("SAP.Functions")
    fns.logfilename = "my_log.txt"
    fns.loglevel = 6
    dim conn
    set conn = fns.connection
    conn.ApplicationServer = "application server name or ip address"
    conn.System = "DEV"
    conn.user = document.myf.t1.value
    conn.password = document.myf.t2.value
    conn.Client = "025"
    conn.Language = "E"
    conn.tracelevel = 6
    if conn.logon(0, true) <> true then
    exit sub
    end if
    dim myfunct
    set myfunc = fns.add("THUSRINFO")
    result = myfunc.Call
    the_exception = myfunc.exception
    dim users
    if result = true then
    set users = myfunc.tables.item("USR_TABL")
    document.write "Table USR_TABL, " & users.rowcount & " rows"
    document.write "<table border=1>"
    document.write "<tr>"
    document.write "<td>BNAME</td>"
    document.write "<td>MANDT</td>"
    document.write "<td>TCODE</td>"
    document.write "<td>TERM</td>"
    document.write "<td>ZEIT</td>"
    document.write "<td>HOSTADR</td>"
    document.write "<td>RFC TYPE</td>"
    document.write "</tr>"
    for each user in users.Rows
    document.write "<tr>"
    document.write "<tr>"
    document.write "<td>"
    document.write trim(user("BNAME"))
    document.write "</td>"
    document.write "<td>"
    document.write trim(user("MANDT"))
    document.write "</td>"
    document.write "<td> "
    document.write trim(user("TCODE"))
    document.write "</td>"
    document.write "<td> "
    document.write trim(user("TERM"))
    document.write "</td>"
    document.write "<td>"
    document.write trim(user("ZEIT"))
    document.write "</td>"
    document.write "<td>"
    document.write trim(user("HOSTADR"))
    document.write "</td>"
    document.write "<td> "
    document.write trim(user("RFC_TYPE"))
    document.write "</td>"
    next
    document.write "</table>"
    set users = nothing
    end if
    fns.connection.logoff
    Set fns = nothing
    Set conn = nothing
    end sub
    </script>
    </head>
    <body>
    <form method="POST" name="myf">
      User Id <input type="text" name="T1" size="20"></p>
      <p>Password<input type="password" name="T2" size="20"></p>
      <p> </p>
      <p><input type="button" value="Submit" onclick="get_cust_data()" name="B1"><input type="reset" value="Reset" name="B2"></p>
    </form>
    </body>
    </html>
    Regards
    Raja

  • Logon from VBA to R3

    I have following code to connect from VBA to R3
    If I use SilentLogon = True, It will be fail.
    If I use SilentLogon = False, logon screen will popup, directly click logon will be fail too.
    If I use SilentLogon = False, logon screen will popup and I select the existing system that I have, fill all the same information in this code and logon, the connection run successfully.
    In this situation where I'm wrong ?
    Can I debug to see which parameter I typed wrong ?
    Thank you.
    Halomoan
    Sub connectR3()
    Set LogonControl = CreateObject("SAP.LogonControl.1")
    Set R3Connection = LogonControl.NewConnection
    R3Connection.Client = "130"
    R3Connection.ApplicationServer = "10.10.6.10"
    R3Connection.Language = "EN"
    R3Connection.User = "user1"
    R3Connection.Password = "tiger"
    R3Connection.System = "00"
    SilentLogon = True
    retcd = R3Connection.Logon(0, SilentLogon)
    If retcd <> True Then
       MsgBox "Logon Failed"
    else
      Msgbox "Logon Success"
      R3Connection.Logoff
    End if
    End Sub

    too much to think about, just use this:
    Set FunctionCtrl = CreateObject("SAP.Functions")
    Set SapConnection = FunctionCtrl.Connection
    SapConnection.client = "<Client>"       
    SapConnection.user = "<logon user>"
    SapConnection.password = "<Logon Password>"      
    SapConnection.language = "EN"      
    SapConnection.HostName = "<hostanme>"
    SapConnection.SystemNumber = "<SySnr>"
    If Not SapConnection.Logon(0, True) Then
        msgbox ("not Connected")
        else
        msgbox ("connected")
    End If
    SapConnection.logoff

  • Cannot connect to iTunes store from PC

    Diagnostics below- at bottom it shows last connection today, but I cannot connect.
    Microsoft Windows 7 x64 Business Edition Service Pack 1 (Build 7601)
    Gigabyte Technology Co., Ltd. P35-DS3L
    iTunes 10.5.3.3
    QuickTime 7.7.1
    FairPlay 1.13.37
    Apple Application Support 2.1.6
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 4.0.0.97
    Apple Mobile Device Driver 1.57.0.0
    Bonjour 3.0.0.10 (0.0)
    Gracenote SDK 1.9.5.502
    Gracenote MusicID 1.9.5.115
    Gracenote Submit 1.9.5.143
    Gracenote DSP 1.9.5.45
    iTunes Serial Number 0037A74413D62BB0
    Current user is not an administrator.
    The current local date and time is 2012-03-09 17:57:14.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is supported.
    Video Display Information
    Advanced Micro Devices, Inc., ATI Radeon HD 4800 Series
    **** External Plug-ins Information ****
    No external plug-ins installed.
    Genius ID: f8c337699275123daabb68ba3a6a762e
    iPodService 10.5.3.3 (x64) is currently running.
    iTunesHelper 10.5.3.3 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:          {CBCDA5E2-1BCC-4942-ACA8-77D393777DDB}
    Description:          Realtek RTL8168B/8111B Family PCI-E Gigabit Ethernet NIC (NDIS 6.20)
    IP Address:          192.168.0.10
    Subnet Mask:          255.255.255.0
    Default Gateway:          192.168.0.1
    DHCP Enabled:          Yes
    DHCP Server:          192.168.0.1
    Lease Obtained:          Fri Mar 09 17:50:31 2012
    Lease Expires:          Fri Mar 09 18:50:31 2012
    DNS Servers:          68.113.206.10
                        24.217.0.5
                        71.92.29.130
    Active Connection:          LAN Connection
    Connected:          Yes
    Online:                    Yes
    Using Modem:          No
    Using LAN:          Yes
    Using Proxy:          No
    SSL 3.0 Support:          Enabled
    TLS 1.0 Support:          Enabled
    Firewall Information
    Windows Firewall is off.
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was successful.
    Connection attempt to purchasing from iTunes Store was successful.
    Connection attempt to iPhone activation server was successful.
    Connection attempt to firmware update server was successful.
    Connection attempt to Gracenote server was successful.
    Last successful iTunes Store access was 2012-03-09 17:24:17.

    many thanks.
    Doublechecking one odd thing from the diagnostics.
    Current user is not an administrator.
    Is that true? Or does your Windows user acount have full admin rights?
    If you do actually have an administrative account, the false result in the iTunes diagnostics can sometimes indicate idiosyncratic permissions trouble that has been known to interfere with Store connections.
    Let's try an experiment. I'd like to try doing a "Run as administrator" on your iTunes.
    Quit iTunes first.
    In Computer, open Local Disk C: or whichever drive you have your program files installed on.
    Open the "Program files (x86)" folder.
    Open the "iTunes" folder.
    Right-click on the iTunes.exe file and select "run as administrator".
    Run your network connectivity tests again. Do they now say "Current user isan administrator"? If so, do you also now get a proper Store connection?

  • RD Connection Broker 2012 - needed documentation to implement a plugin

    Hello
    I am trying to implement a plugin for RD Connection Broker (by using of realization of the IWTSSBPlugin interface, https://msdn.microsoft.com/en-us/library/cc644955%28v=vs.85%29.aspx)
    In documentation (https://msdn.microsoft.com/en-us/library/cc644953%28v=vs.85%29.aspx) I have readed that I should register my plugin in ExtensibilityPluginCLSID parameter of the HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tssdis\Parameters registry
    key)
    But when I look into trace of tssdis.exe (by ProcessMonitor) then I can't see any accesses to this parameter. Instead of that I see access to other parameters of this registry key - DbPluginClsid, DbObjectFactoryClsid, ConnectionOrchRunningVmTimeout etc. Also
    I see the "Plugins" subkey in this registry key and I see access to this subkey. But I can not find any chapters in MSDN about these parameters and subkey.
    I think the mentioned documentation was written for older version of Windows Server. Please help me find a newer documents about implementation of plugin(s) for RD Connection Broker 2012
    Thank you

    Hi,
    From my point of view, I don’t think that all these plugins are well documented, at least not publically.
    I would suggest you contact Microsoft Customer Support and Services where you may get more professional support on this.
    You may find phone number for your region accordingly from the link below:
    Global Customer Service phone numbers
    http://support.microsoft.com/gp/customer-service-phone-numbers/en-au
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Manage Server 2012 Backups from Windows 8.1

    Hello,
    I am trying to find out if it is possible to manage server 2012 backups from a windows 8.1 workstation via GUI or is the CLI the only option?
    I found a few articles online that mention to use a computer management console > storage > backup (but from what I know it only works if you're connecting from a 2012 server itself)
    Thank you in advance!

    Hi,
    We cannot manage server 2012 backups from a windows 8.1 workstation. Ye may need to use Remote Desktop Connection to access server 2012 from windows 8.1 workstation. In additional, we could manage server 2012 essential backups using dashboard on Windows
    8.1 workstation.
    For more detailed information, please refer to the article below:
    Get Connected in Windows Server Essentials
    http://technet.microsoft.com/en-us/library/jj713510.aspx
    Best Regards,
    Mandy
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Thinking of purchasing Time Capsule.... Can I access my documents saved on (Home Network) Time Capsule from another Network??? For instance, I can access my documents saved on MyBookLive (which is connected to my wifi) from ANY wifi connection...

    Thinking of purchasing Time Capsule.... Can I access my documents saved on (Home Network) Time Capsule from another Network??? For instance, I can access my documents saved on MyBookLive (which is connected to my wifi) from ANY wifi connection... Like when I'm at school I can download documents stored on my MyBookLive at home.... I love this feature... But I would prefer to keep my products apple... So my question is can I access my documents from ANYWHERE with Time Capsule???
    Other products I have: MacBook (2009 limited edition it's aluminum) two iPad2 (2012) iPhone 5 (2012) two iphone4 iPod touch (2010) iPod Nano (2011)

    Remote access to TC is allowed by BTMM and iCloud service.
    Not for ipad or iphone.. only the Macbook although I think people have some work arounds..
    NOTE. Your school firewall should block it. If I was still working in network admin I would. ie you are risking the whole network to get access to files unchecked for viruses.. and please don't just say Macs don't get viruses, you can still be the source of the infection even if you don't suffer the disease. Just a carrier.
    http://support.apple.com/kb/HT3486

  • Cannot browse to Server 2012 shares from Windows 8.x

    I can't conntect or browse to any shares on a 2012 server from a Windows 8.1 client. I can connect from Windows 7 to server 2012. And from Windows 8.1 I can connect to 2008 servers. Is this a new security feature/setting on Windows 8.1 or on Server 2012?

    Hi Spetroski,
    Based on your description, I’m a little confused with your question. Please let me confirm something more.
    Is it in a domain environment? Did you mean you type the share path in
    Run, and then access share? If so, please check if use server’s IP address to access, will the same result?
    If I misunderstood the connection way, please don’t hesitate to let me know.
    Please confirm which following scenario is similar with current state of this issue.
    When use Windows 8.1, you can connect to server 2012. However, can’t browse and access all shares that host in server 2012.
    Can’t even connect to server 2012, when use Windows 8.1.
    If none, please feel free to let me know some details.
    Meanwhile, please let me know if you can find some error message when this issue occurred. If can find, please
    post the complete error messages here.
    Hope this helps.
    Best regards,
    Justin Gu

  • RFC-connection error: DETAIL: no connect of TP sapdb02 from host u0085 after 20

    Hello!
    I face with problem to set up successfully a RFC-connection from SOLMAN to the satellite system.
    The network connection here is VPN.
    The following error appears, when I execute the connetion test:
    Error: Timeout during allocate
    LOCATION: SAP-Gateway on host …/sapgw03
    DETAIL: no connect of TP sapdb02 from host … after 20 sec.
    COMPONENT: SAP-Gateway
    Has some one any ideas how to solve this problem?
    Thank you very much!
    regards
    Thom

    Hi,
    Did u get this issue sorted out.
    Let me know if you did mate..
    I think its some thing to do firewall port..
    Thanks
    James

Maybe you are looking for

  • IPhoto Printing

    How can I print multiple pictures & have the images automatically scaled to fit the page? For example, I wanted to print 4 pictures on a 4x6 page because I like small pictures. When I did this, the pictures didn't automatically scale for the space. T

  • Video Call for Lumia 620

    can you get vedio call (USE SKYPE and without skype) use Nokia lumio 620 phone?

  • Output to Word

    I'm working on an app in HTMLDB that will require me to output text to word and vice versa. I though about doing it by opening word in a command line filling the cache and pasting it into the opened word doc. This seems a bit cumbersome though and it

  • Conditions TAB in PO

    Dear Gurus, One of my FI User unable to see the Conditons tab at header and item level of the PO , where as for the same PO we are able to see the the Conditions tab at header and item level. we have maintain GR based invoice varification at Invoice

  • Oracle OLAP ExpressDataProvider Exceptions

    Hi I'm using Oracle 9i OLAP API. There's something strange going on here. I written a test program that accesses the metadata and displays all it's contents. It runs fine on my home PC. At college the same program running on the same settings as that