wan mini port PPPoE issue in Windows 7
I have Windows 7 ultimate 32bit OS. I mistakenly un-install the WAN mini PPPOE port. I need this port to run the internet dialer of my cable net. I use below steps to create dialer.
1. From Network and Sharing Center > Setup a New connection or network.
2. Connect to internet > No, create a New connection
3. In “How do you want to connect ?” option I choose Broadband [PPPoE]. Than enter the credential and create the connection.
But when I go to Network Connections the Icon has “Unavailable – Device Missing status”
- Changed type Vithoba Thursday, November 3, 2011 8:38 PM
Reply:
------------------------------------
Reply:
Hi,
You may try to refer this article about reinstall mini port:
http://geekswithblogs.net/BrentCaskey/archive/2011/06/09/re-installing-wan-miniport-devices.aspx
Please Note: Since the website is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
If it doesn’t help, you can also perform a system restore for test.
Hope that helps.
Leo Huang
Please remember to click "Mark as Answer" on the post that helps you, and to click "Unmark as Answer" if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.
------------------------------------
Reply:
I had to obtain devcon.exe by installing the Windows Driver Kit (WDK) and using the copy in 8.0\Tools\x64. The more commonly found devcon.exe will fail with a terse, unhelpful message.
I installed each of these hardware ID's using "devcon.exe install c:\windows\inf\netrasa.inf <hardwareId>":
MS_AgileVpnMiniport
MS_NdisWanIp
MS_NdisWanIpv6
MS_L2tpMiniport
MS_NdisWanBh
MS_PppoeMiniport
MS_PptpMiniport
MS_SstpMiniport
After adding these, Device Manager showed them as "Unknown Device".
After a reboot, Windows attempted to install drivers for these. It reported failure for each, but still, Device Manager showed the proper Display Name for each of the above.
My first attempt at using VPN failed due to Network Access Protection (NAP) not getting info it wanted. The second attempt succeeded.
------------------------------------
Export Linq query to Excel (late-bind)
All,
I'm sure this has been posted somewhere before, but I had trouble finding a solution for this and ultimately ended up developing my own. I've come up with a lightning-quick way to export any Linq query to Excel (though there are some reflection elements in it, but even with this, on my PC, I'm able to export 7000 rows in less then one second directly into Excel).
Excel LateBind class:
public class cExportToExcel:IDisposable { private object _objExApp; public cExportToExcel() { Type Excel = Type.GetTypeFromProgID("Excel.Application"); try { //try to get active object, will catch exception if none _objExApp = Marshal.GetActiveObject("Excel.Application"); //try to set Application.ScreenUpdating property, test for Application Busy. Will throw exception of Application is busy, which will instantiate a new instance of the Excel.Application type this.ScreenUpdating = false; this.ScreenUpdating = true; } catch (Exception ex) { System.Diagnostics.Debug.WriteLine(ex.Message); _objExApp = null; _objExApp = Activator.CreateInstance(Excel); this.ScreenUpdating = true; } this.Visible = true; } private bool DisplayAlerts { get { return (bool)_objExApp.GetType().InvokeMember("DisplayAlerts", BindingFlags.GetProperty,null,_objExApp,null); } set { _objExApp.GetType().InvokeMember("DisplayAlerts", BindingFlags.SetProperty, null, _objExApp, new object[] { value }); } } private object Workbooks { get { return _objExApp.GetType().InvokeMember("Workbooks", BindingFlags.GetProperty, null, _objExApp, null); } } public void OpenXML(string strPath) { object[] args = new object[3]; args[0] = strPath; args[1] = Type.Missing; args[2] = 2; this.Workbooks.GetType().InvokeMember("OpenXML", BindingFlags.InvokeMethod, null, this.Workbooks, args); Array.Clear(args,0,args.Length); args = null; } public bool Visible { get { return (bool)_objExApp.GetType().InvokeMember("Visible", BindingFlags.GetProperty, null, _objExApp, null); } set { object[] args = new object[1]; args[0] = value; _objExApp.GetType().InvokeMember("Visible", BindingFlags.SetProperty, null, _objExApp, args); args = null; } } public bool ScreenUpdating { get { return (bool)_objExApp.GetType().InvokeMember("ScreenUpdating", BindingFlags.GetProperty, null, _objExApp, null); } set { object[] args = new object[1]; args[0] = value; _objExApp.GetType().InvokeMember("ScreenUpdating", BindingFlags.SetProperty, null, _objExApp, args); } } public object StatusBar { get { return _objExApp.GetType().InvokeMember("StatusBar", BindingFlags.GetProperty, null, _objExApp, null); } set { _objExApp.GetType().InvokeMember("StatusBar", BindingFlags.SetProperty, null, _objExApp, new object[] { value }); } } public void ExportDataTable(ref System.Data.DataTable dt) { this.Visible = true; this.StatusBar = "My Display Message while running, will show in Excel statusbar"; //this.ScreenUpdating = false; this.DisplayAlerts = false; if (string.IsNullOrEmpty(dt.TableName)) dt.TableName = "Name"; string strPath = string.Format("{0}Export {1}.XML", System.IO.Path.GetTempPath(), DateTime.Now.ToString("yyyyMMddHHmmss")); dt.WriteXml(strPath); OpenXML(strPath); this.DisplayAlerts = true; this.StatusBar = false; new System.Threading.Tasks.Task(() => new System.IO.FileInfo(strPath).Delete()).Start(); } public void Dispose() { System.Diagnostics.Debug.WriteLine(Marshal.ReleaseComObject(_objExApp)); //should be 0 _objExApp = null; } } My Extension Class:
public static void ExportToExcel<IEnumType>(this IEnumerable<IEnumType> ie) { if (ie.Count() > 0) { using (cExportToExcel cexp = new cExportToExcel()) { DataTable dt = new DataTable(); ie.First(ie2 => true).GetType().GetProperties().ToList().ForEach(pr => dt.Columns.Add(pr.Name, typeof(string))); ie.ToList().ForEach(ie2 => { List<object> objAdd = new List<object>(); ie2.GetType().GetProperties().ToList().ForEach(pr => objAdd.Add(ie2.GetType().InvokeMember(pr.Name, BindingFlags.GetProperty, null, ie2, null))); dt.Rows.Add(objAdd.ToArray()); objAdd.Clear(); objAdd = null; }); cexp.ExportDataTable(ref dt); dt.Dispose(); } } } Linq example
private void ExportLinqQry() { (from i in ... join j in ... select new { i.Field1, i.Field2, ... }).ExportToExcel(); } Note that I piece-mealed this code together from one of my other applications, so if you get debug issues let me know and I'll update the code. I know this isn't specific to WPF (in fact, this could even be used in ASP.Net I'd think), but since WPF is the platform I'm developing in I'm posting it here. Feel free to move this to a more appropriate forum if you feel it should be moved (and of course, you're one of the nice people at MS, hehe).
Happy Coding.
EDIT: I should point out that this will only work if the Excel version is >= XP/2003, as prior versions do not support OpenXML. With that said, since we're using late-bind, then assuming the aforementioned restriction is adhered to, this will be perfect (as perfect as my code could be, at least) for environments with mixed Office distributions.
- Moved by Annabella Luo Tuesday, October 2, 2012 8:35 AM (From:Windows Presentation Foundation (WPF))
- Edited by whiteheadw Tuesday, October 2, 2012 10:29 PM Added ReleaseComObject
Reply:
Hi whiteheadw,
Thank you for your post.
According to your description, I think your issue is not a WPF development one, so I'm moving your thread, thank you for your understanding and support.
Have a nice day.
Annabella Luo[MSFT]
MSDN Community Support | Feedback to us
------------------------------------
Reply:
Visual C++ MVP
------------------------------------
Reply:
For exception handling, of course you'll want to look at the Excel version (or wrap the OpenXML inside a try/catch). For cleanup code, the using block takes care of the instance of cExportToExcel (which automatically calls Dispose in iDisposable objects, and therefore sets the Excel application to null--note that you won't want to unload the Excel App from memory, as the user will be using it, so it's best just to set the object referring to the Excel app to null) and the DataTable is properly disposed. The iEnumerable<iEnumType> is not removed from memory in the extension function, as this should be done on the calling function that originally created the iEnumerable<iEnumType>.
Other then that, the only other thing I could think to check for are memory constraints and System.IO errors (i.e. when writing the XML file, reading the XML file, and deleting the XML file). For simplicity, I didn't bother to include in cExportToExcel, as it would be a distraction from the main concept of how to export the result of a Linq query to Excel.
With that said, if you could think of anything else as far as cleaning up resources or exception handling, then feel free to let us know.
------------------------------------
Reply:
DataTable's dispose method actually does nothing right now, it is there to reserve the right to do something meaningful in the future.
I am talking about leaking of COM objects, as I don't see RCWs being stored anywhere to be released. The Excel application is not the only RCW created by your code, each time you call Excel's API you may create one, and not able to shutdown is not the only problem of leaking RCWs, you may have the machine slow down or programs fail with OutOfMemoryExcetion due to wild RCW holding large workbooks.
Visual C++ MVP
------------------------------------
Reply:
Hi Sheng Jiang,
Two things then:
1) That DataTable.Dispose() does nothing seems to me like an MS Bug (and perhaps a separate issue), since as a developer, whenever I see a .Net class that impliments iDisposable I'm assuming that the class actually fulfills its contract (i.e. a call to Dispose will actually Dispose of the object that implements iDisposable).
2) I don't quite understand your point about RCW. According to documentation from http://msdn.microsoft.com/en-us/library/8bwh56xe.aspx:
"The runtime creates exactly one RCW for each COM object". Which, as this is worded, seems to indicate that I don't create the RCWs, I just marshal the COM objects and the runtime creates the RCWs themselves.
It goes on to state "Using metadata derived from a type library, the runtime creates both the COM object being called and a wrapper for that object. Each RCW maintains a cache of interface pointers on the COM object it wraps and releases its reference on the COM object when the RCW is no longer needed. The runtime performs garbage collection on the RCW."
Again, the RCW is created by run-time, and then GCed by runtime.
So, perhaps I'm missing something here. I looked at the Excel Development forum, but didn't see much in line with the RCW issue you raised. Perhaps there is an example you could show me (doesn't have to be an Excel COM necessarily, just some kind of example) that would further demonstrate your point so I could fix the code.
Thanks.
------------------------------------
Reply:
RCWs themselves are relatively small objects and do not contribute much to the memory pressure on the GC. Problem is the COM object that it manages on the native heap. I have had some support calls when user have trouble using Office after our Office automation before we decide to release RCWs aggressively. There are many more issues discussed in the Performance and Scalability Issues section in Chapter 7 — Improving Interop Performance.
There are many more discussion about RCW leaks in the CLR forum (covers COM interop) and Office programming forums, like this one in Word Development.
Visual C++ MVP
------------------------------------
Reply:
Chapter 7 content has been retired. Is this still valid for our purposes?
I've added ReleaseComObject(_objExApp) to my Dispose method, but since everything else is invoked via Reflection, I don't think I need to worry about creating RCW objects for the various properties I've written in my class. Is there some kind of (non-retired) MS documentation that says I should?
Thanks.
------------------------------------
Reply:
The issues won't magically go away when Microsoft retire the document. RCW is created when you access COM from .Net, using the reflection wrapper does not change the fact that you are calling a native component via COM.
I suggest you to ask in the Office programming forum for expert opinion (e.g. folks from the VSTO team or Addin Express), I personally have issues with RCW leaks and got enough support calls to make the fix.
Visual C++ MVP
------------------------------------
hp photosmart 770 maintenance
My printer is an hp photosmart 7760. I have had it several years and have used it often. Now the printing is satisfactory in a document, but the photos added to the
document print out with green and gray horizontal stripes. I have tried cleaning it as I did my hp printer I previously owned. It did not help. Is there something more I
can do ? When cleaning under the cartidges I found a black tape about 2 inches long. Is this something that has worn out or broken off?
How to move system attendant mailbox
Reply:
Hi,
The SA mailbox should be recreated automatically:
Leif
------------------------------------
Reply:
Hi
Go through the following link which explains more about the System Attendant mailbox
http://blogs.technet.com/b/evand/archive/2004/12/21/329172.aspx
If you want to move the System Attendant mailbox to another database, you can do it from ADSIEDIT. Follow the below steps
1) open ADSIEDIT.msc
2) connect to the configuration container
3) Expand CN=Configuration,CN=Services,CN=Microsoft Exchange, CN= "OU Name", CN=Administrative Groups,CN= Exchange Administrative Group, CN=Servers, CN="Server name", CN=Microsoft System Attendant.
4) Right click CN=Microsoft System Attendant and select properties
5) select the attribute "Home MDB". you will find the DN of the database which is currently holding the System Attendant mailbox. you can change this to the DN of the database to which you need to move the System Attendant mailbox.
Let me know if this helps
Thanks
------------------------------------
face book tech. help.
all I would like to do is to erase my facebook informatio so that I can sign in again by signing up again. I can't remember my password?
- Moved by JOshiro Tuesday, October 2, 2012 9:43 PM Facebook question (From:Live Connect)
Reply:
------------------------------------
How to add user to a website with inherited permissions levels using client object model
I have a number of subweb sites which have unique permissions and want to re-use a pre-defined user and/or group from the site collection. The subweb maintains the permission levels from the parent site. From the browser interface I can add a new user/group to the site and set the permission level for which they will operate from. How can I do this with the Client Object Model? From the code shown I want the new subweb user to have the pm permission level but can't figure out how to do this.
User oUser = ctx.Web.SiteGroups.GetById(ProjectWSVisitorsGroupId).Users.GetById(84); ctx.Load(oUser); ctx.ExecuteQuery(); RoleDefinitionCollection rdc = ctx.Web.RoleDefinitions; ctx.Load(rdc); ctx.ExecuteQuery(); RoleDefinition pm = rdc.GetById(1073741937); //1073741937 Project Managers (Microsoft Project Server) RoleDefinitionBindingCollection rdb = new RoleDefinitionBindingCollection(ctx); Principal usr = ctx.Web.EnsureUser(oUser.LoginName);
//owebsite is object tied to subweb of ctx oWebsite.RoleAssignments.Add(usr, rdb); ctx.ExecuteQuery();
Thanks
Ken
Reply:
figured it out.
RoleAssignment r = ctx.Web.RoleAssignments.GetByPrincipalId(ProjectWSVisitorsGroupId); RoleAssignment r2 = ctx.Web.RoleAssignments.GetByPrincipalId(ProjectManagersGroupId); User oUser = ctx.Web.SiteGroups.GetById(ProjectWSVisitorsGroupId).Users.GetById(84); Group grp = ctx.Web.SiteGroups.GetById(ProjectWSVisitorsGroupId); oWebsite.RoleAssignments.Add(grp, r.RoleDefinitionBindings); if (mngr != null) oWebsite.RoleAssignments.Add(mngr, r2.RoleDefinitionBindings); oWebsite.Update();
------------------------------------
[NEW FIM HOTFIX] A hotfix rollup (build 5.0.520.0) is available for Forefront Identity Manager 2010 Lotus Domino Connector
A hotfix rollup (build 5.0.520.0) is available for Forefront Identity Manager 2010 Lotus Domino Connector
http://support.microsoft.com/kb/2741896
Tim Macaulay Security Identity Support Team Support Escalation Engineer
Can see new custom theme in the theme gallery but it doesn't show in Site Themes
Hi there -
So this is what I've done:
I customized a theme in the browser from the Look and Feel --> Site Themes page
I located the theme.thmx file using SPD 2010 in _catalogs/theme/Themed/<uniquehexid>/
I exported the file to my local file system and uploaded it from the Site themes gallery
And it's there in the Themes gallery on the root of the Site collection
And I'm stuck at the final bit - which is implementing the theme - how dod I do it?
I've looked here - http://toddbaginski.com/blog/how-to-create-a-custom-theme-for-sharepoint-2010-aspx/ where it says
- In the Look and Feel section, click Site theme
- At the top of the page click the Theme Gallery link
But there is no Theme Gallery link in the site theme page!
If anyone can help it would be greatly appreciated
Cheers
Jonj
Reply:
The link is located in a piece of text on top of the page:
Use this page to change the fonts and color scheme for your site. You can select a theme or you can upload new themes to the Theme Gallery. Applying a theme does not affect your site's layout, and will not change any pages that have been individually themed.
Do a control-f on the page and search for "Theme Gallery"
http://www.balestra.be || @marijnsomers
------------------------------------
Reply:
Yes I can see the link to the theme Gallery now - but that just takes me to the Gallery. The theme itself still doesn't appear in the Site Themes page
Another thing - I can't open the .thmx file on my file system with PowerPoint - that is PowerPoint opens but nothing appears
When I create themes in PowerPoint and upload them to the Themes Gallery they do appear in Site Themes page
So maybe it's something to do with the way I created the .thmx file - i.e. I created the theme in the browser and then located and then exported the .thmx file using SPD2010
hmm...
- Edited by jonjames Tuesday, March 27, 2012 11:52 AM
------------------------------------
Reply:
The link takes you to the gallery, where you can add your theme..
(via add new item)
the .thmx file you open in PowerPoint contains the styles you have defined. If you put content on the slides, the layout will automatically be the colors you have chosen.
http://www.balestra.be || @marijnsomers
------------------------------------
Reply:
There are no mistakes; every result tells you something of value about what you are trying to accomplish.
------------------------------------
Updating Sitepages/Home.aspx on webprovisioned - Occasional conflict error
Hi All,
As part of a sandbox solution I am creating, I have a web provisioned event receiver
- Updates the new sites branding to match the root site
- Updates the default sitepages/home.aspx (if it exists)
- Deletes the OOTB default.aspx (if the site has a sitepages/home)
This all seems to work 'most' of the time, but occasionally when creating a sub site the following error message appears:
Error - The file SitePages/Home.aspx has been modified by xxx@xxx on 02 Oct 2012 08:51:36 -0700.
It doesn't happen all the time which makes it really strange to understand and debug. It almost appears to happen if you create a site to quick after creating another?
Can anyone help me understand why this might be happening. It is worth noting that I am on SharePoint Online so can not check the correlation ID L
public override void WebProvisioned(SPWebEventProperties properties) { // Get and set child and top sites SPWeb childSite = properties.Web; SPWeb topSite = childSite.Site.RootWeb; // Apply branding from top site to childsite childSite.MasterUrl = topSite.MasterUrl; childSite.CustomMasterUrl = topSite.CustomMasterUrl; childSite.AlternateCssUrl = topSite.AlternateCssUrl; childSite.SiteLogoUrl = topSite.SiteLogoUrl; childSite.Update(); // Construct HTML for new home.aspx page string content = "Test Content"; // Check if the newsite has a sitepages library and home.aspx SPFile oFile = childSite.GetFile("Sitepages/Home.aspx"); if (oFile.Exists) { // replace page content with new html oFile.Item["WikiField"] = content; // Update oFile.Item.Update(); // Delete old Default page. SPFile oDefault = childSite.GetFile("default.aspx"); if (oDefault.Exists) { oDefault.Delete(); } oDefault.Update(); } } } } IE9 et domaine
Bonjour,
J'ai des stations en windows 7 Pro 32 bits avec ie9 et elles sont dans un domaine. J'ai des soucis pour consulter certains sites avec le message d'erreur : "internet explorer a cessé de fonctionner".
Ma version d' ie
Quelqu'un a t-il eu ce problème ?
Merci d'avance.
Wilfried RIMBEAU
WR
- Changed type Jeremy_Wu Tuesday, October 2, 2012 7:11 AM
Reply:
Hi,
Thanks for posting here.
However, this is an English forum. It is appreciated that if you can address the issue in English.
Otherwise, for other languages support, please visit http://support.microsoft.com/common/international.aspx.
Thanks for your understanding and hope the issue will be resolved soon!
Regards.
Jeremy Wu
TechNet Community Support
------------------------------------
Reply:
[crash being reported but Help, About image given?]
------------------------------------
Exchange 2007
Hi All,
my colleague made a mistake with Exchange 2007. He cancelled all files in ExchangeServer\Logging\lodctr_backups folder. Is it possible to recreate all files? could I have some problems in the future without these files (i.e. problems during backup operations)?
Thanks in advance,
Mark
Reply:
You dont need those files:
------------------------------------
Reply:
Thanks.You dont need those files:
------------------------------------
Access my website from Internet
Hi all,
I can access my website www.mywebsitename.com in Lan. The site is bound to 8090/8091(https) in IIS7, and the (netgear fvs318g) router is open http/https to iis server ip:port 192.168.1.3:8090 and 8091. The domain name is soloved properly. The incoming internet(/yahoo) email can go through the routers firwall set (to 192.168.1.3:25, handled by exchange 2007, sbs 2008) . But access from internet towww.mywebsitename.com just hanging there. I opened the machine's (where IIS is located) firewall port 8090/1 or turned the firewall off. Any tips on troubleshooting?
TIA
-s
- Changed type Sean Zhu - Tuesday, October 2, 2012 1:20 AM
Reply:
70.184.xxx.xxx is responding on port 25 (smtp).
70.184.xxx.xxx isn't responding on port 80 (http).
What i'm missing? I did similar firewall rules for both for inbound services as showing in Netgear router below
Service Name Filter LAN Server IP Address LAN Users WAN Users Destination Bandwidth ProfileLog
HTTP Allow Always 192.168.1.3:8090 ANY WAN1 NONE Always
HTTPS Allow Always 192.168.1.3:8091 ANY WAN1 NONE Always
SMTP Allow Always 192.168.1.3:25 ANY WAN1 NONE Never
------------------------------------
Reply:
------------------------------------
Reply:
Can you clarify?
1. Internally, you can browse to www.mywebsitename.com
2. Externally, you cannot browse to www.mywebsitename.com
3. In IIS, you have bound www.mywebsitename.com to port 8090 and 8091, but not 80?
4. If that is the case, then you would not be able to access www.mywebsitename.com internally, unless you go to www.mywebsitename.com:8090
5. Have you opened the Windows Firewall to allow port 8090 and 8091.
6. Are you passing through port 8090/1 directly to the server? If you have resolution to port 80, then port 80 will also need to be open.
I have not had much luck with older Netgear routers in getting port redirection working. I noticed that they appear to have fixed this in the newer routers.
Regards, Boon Tee - PowerBiz Solutions, Australia - http://blog.powerbiz.net.au
------------------------------------
Reply:
I had a similar problem.
Static IP from our ISP is something like 77.233.34.223, from anywhere outside our office, I could access our website running on the office server, but, inside the office I could only access it by using 192.168.2.2
In the end, we got a new router (CISCO) one and ported port 80 to the server and it all works now.
Hope that helps a bit
------------------------------------
How do you make windows Search include .mkv or .rm files when using filter of kind:=video
Hi
I have created a library which includes 5 folders of different movies and videos, some of which are Real Media (.rm) and some of which are mkv fies.
I have no problems playing these using Windows Media Player.
I am wanting to be able to view all my movies across these 5 folders in a single list/page by including a search field of kind:=video within the Library view. The default views do not allow for this - as they force separation into folders or if you sort by name, they show everything.
This concept is working fine for avi files and mpg files etc, but .mkv and .rm files are excluded, even though the "perceived type" of the files is "video".
I have updated HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\KindMap to define .mkv and .rm files as kind=video then forced a rebuild of the index - but to no avail.
Is there something else I need to do to get Windows Search to consider mkv files as kind=video?
Cheers
George
- Edited by netwar Sunday, January 8, 2012 3:45 AM
Reply:
Hi,
Try to input “index option” in Search box and press Enter.
In index options, click “Advanced”---“File Types”, add .mkv and .rm to see if it can achieve it.
Leo Huang
Leo Huang
TechNet Community Support
------------------------------------
Reply:
From MSDN, System.Kind Windows property reference page:
The list of Kind values is not extensible.
I guess we're out of luck.
Regards
Alessandro
------------------------------------
TMG and NLB experiencing DUP ACK and retransmits
Hi everybody,
A customer is having an issue with the following configuration
2 EE TMGs - connected to Foundry FastIron FI 400 switch on 100 MBps ports, using IGMP Multicast - will change once it enters into production
1 EMS separately on a VM
We have 4 networks on the array all but one are load balanced - we are using NAT on that one.
The problem that we are experiencing is that a network capture performed on the switch using port mirroring of the TMG ports in question reports quite a few of the following errors: previous segment lost, tcp out of order, dup ack, tcp acked lost segment, …
Can anyone suggest what can we look at?
We are not seeing any other performance degradation - slow transfer or any errors with received files. We are however concerned that we could experience issues once this enters production.
Reply:
Hi, thank you for the reply...
The troublesome link is the "WAN" segment. The scenario that if we try to transfer a file over CIFS from the server segment to a server in the MGMT segment.
If we put another computer (Windows 7) into that WAN segment- bypassing the TMG and attempt to transfer the same file, there are no Duplicate ACKs and out of order packets.
As it looks at this point, the troubling thing is the configuration of the TMG servers?
------------------------------------
Reply:
------------------------------------
Problems with users not receiving Expected Rules List.
So a couple of months ago we switched to FIM 2010 R2 from Novell's IDM solution so I'm still getting the hang of things. We have roughly 130,000 users and over a million records in my FIM MA. I only mention the size of things since I'm unsure if it could be the source of our issue and because it does influence how long it takes me to run Full Imports and Full Syncs on it.
The problem I am seeing is that I have new records being created with all correct attributes in my source table. I run a Full Import/Delta Sync on it to read in new records and changes. Export to my FIM MA and it creates new users and they show in the correct set but do not always receive the Expected Rules List. This is a problem since they don't receive the MPRs to create their AD account. If I delete the user in FIM and re-import from my Source MA it typically receives everything and creates the AD account.
I've examined the users in the FIM Portal before deleting and cannot see why they aren't receiving the correct ERLs. Any ideas on how I can troubleshoot?
- Changed type Markus VilcinskasMicrosoft employee Saturday, May 25, 2013 12:11 AM
Reply:
If you look at the request to create the user in the portal, is the request successful? Does the Applied Policy tab show all of the requisite MPRs?
My Book - Active Directory, 4th Edition
My Blog - www.briandesmond.com
------------------------------------
Reply:
Hi,
There is two reasons.
1:- Please define the run profiles sequence. It matter in which sequence you run the MA's
2:- Check the attributes precedence.
Regards,
M. Irfan
------------------------------------
Reply:
Hi,
There is two reasons.
1:- Please define the run profiles sequence. It matter in which sequence you run the MA's
2:- Check the attributes precedence.
Regards,
M. Irfan
I'm not sure how you can definitively state that there is only two possible reasons this could happen...
My Book - Active Directory, 4th Edition
My Blog - www.briandesmond.com
------------------------------------
Reply:
There are no request pending and I cannot find ANY completed request. Do I need to enable something to log completed request? I can quarentee you there are completed request since I have created/modified and deleted thousands of accounts already. When I look at the Provisioning tab on a problemed user, there are zero MPRs listed when there should be three. So no "Not Applied" or "Pending", they are just not there.
If I delete the user from the FIM Portal and do a delta import/delta sync on the FIM MA then perform a Full Import/Delta Sync on my SQL MA I can then export to the FIM MA most of the time and the user will be created and have the MPRs listed in pending status. I can then Delta Import/Delta Sync on the FIM MA and export to AD and it will create.
So again, most of the time it works but I am seeing this problem frequently enough that it's an issue that I am having to delete from the FIM MA and re-run my usual process.
- Edited by willwallguy Tuesday, October 2, 2012 1:58 PM
------------------------------------
Issues with agent based Client Monitoring
Hi, I've tried implementing agent based Client monitoring to attempt to gather information on Client health of our PC estate - we have a number of 'problem areas' where users have varoius complaints of poor logon performance, application issues etc so I was hoping a combination of aggregate client monitoring and business critical monitoring would give an insight into potential issues which support desk could follow up.
I've followed the MP guide but am finding little useful info coming back. My main observation if I'm following the guide correctly, most of the information gathered using aggregate client monitoring is viewed only through the client reports that the MP installs. However when I try and run them, most of them are bombing out with execution failure errors for dataset 'Data_Warehouse_Main', TimeByMachineType etc. I know Data warehouse maine is a dataset reference by many reports so am weary renameing my Mata Warehouse Main if it affects running of other reports which are currently OK.
also on aggregate monitoring, does the 'sample PC's' actively gather states from other PCs or does how does it come up with the aggregated data - I cant find this in the documentation.
Finally the MP guide also recomments installing the Information Worker MP for greater detail on application level issues in Word,excel Outlook etc. I would be keen to use this but looks like that MP is for office 2007, but we are on Office 2010. Do nt see any updated MP for 2010 - will the 2007 one work for 2010, I'm guessing not as this 2010 was a big change in underlying code...
Any help much appreciated...
Reply:
Bump...
Anyone have experience implementing agent based aggregate/business critcial client monitoring. none of the installed Client monitoring reports are running. I'll try an uninstall/reinstall of the MP's but not optimictic it will resolve issues...
Cheers
------------------------------------
Reply:
Hi
For the critical desktops monitoring - have you imported the xml file and added the appropriate desktops to the groups.
If you import the management packs directly from the web console then you don't get the xml file.
Cheers
Graham
Regards Graham New System Center 2012 Blog! - http://www.systemcentersolutions.co.uk
View OpsMgr tips and tricks at http://systemcentersolutions.wordpress.com/
------------------------------------
Reply:
Hi Graham, yes I imported the xml mp's for business critical - all the MP's installed fro client monitoring is as below
I can see the nodes in the Microsoft Windows client view are populated with the agent info OK. My initial issue here is that none of the Reports for windows Client are returning anything meaningful - either 'empty' reports or errors such as 'An error has occured during report processing. Query execution fialed for dataset 'TimeBymachineType' (or other datasets such as Data_Warehouse_Main).
It was my understanding that the aggregate reports is where you get the detail for aggregate client monitoring - I'm looking to establish some knowledge arount Client health/PC boot performance etc. any help much appreciated...
Cheers
------------------------------------
IBM-WSRR integration with BizTalk
Guys,
Has any one integrated WSRR (IBM-WebSphere Service Registry and Repository) with BizTalk (2009/2010)?
If yes, would you please provide me details on how can I do that?
Should I create C# client for the Rest APIs of the WSRR or something else? There is really no information available on WSRR + BizTalk on open search.
Appreciate your response in advance.
Thanks, Rik
- Edited by Rik_at_BTS Wednesday, September 26, 2012 6:55 PM
Reply:
Guys,
I integrated BizTalk with WSRR using c# helper classes consuming (https GET, sending httpsWebRequest) the WSRR restful service. It made life so easy.
Thanks, Rik
------------------------------------
New Right-Click Tools Released
ConfigMgr Console Extensions 1.7 (formerly SCCM Console Extensions) are FINALLY released! These are right-click tools for the ConfigMgr console and support both SCCM 2007 and 2012. Lots of new tools and a slew of bug fixes in this release.
myitforum.com/cs2/blogs/direland for more detail about the tools and download location.
Enjoy!
Dan
Reply:
Hi
I installed this and although it said it installed, I don't have anything new under the ribbon or when right-clicking on a collection or a client.
I'm running Win7 x64 and SCCM 2012 and have to do a RunAs to run the SCCM console as my admin user account.
I've tried installing ConfigMgr Console Extensions 1.7 under both user accounts, but it doesn't seem to be registering with my SCCM console.
Am I missing something somewhere ?
Does the installation folder matter ?
Thanks
Mark.
------------------------------------
Reply:
Hi Mark,
If you could, send me an email and I can work with you on this offline. My email address can be found in the ReadMe.txt
Thanks,
Dan
------------------------------------
Suggestion: Add Powershell highlighter in code block
Hi there,
in more and more products, the Powershell is an easy way to manage them.
So, could you please add support for Powershell highlighting in the code blocks.
At the moment the closest highlighter is C#, but for comments there are extra chars to add.
But see your self:
#' this is a Powershell comment in VB.Net #// this is a Powershell comment in C# #// this is a Powershell comment in C++ Kind regards,
Benedikt
Reply:
Christopher Yeleighton
------------------------------------
Reply:
The following is my signature:
Powershell Programmer & Advanced Lua Programmer
Location: Switzerland
Beside that, whenever you see a reply, you think is helpful, mark it as "Helpful"! And whenever you see a reply being an answer to the mainquestion of the thread, mark it as "Answer" (if you opened the thread).
------------------------------------
Show items with no data on a Pivot Table
Hi,
I have a pivot table (linked to PowerPivot Data from an access DB) with multiple fields and slicers. I want to ensure that the pivot table will shows all fields even if there isn't any data. I click on the "Show items with no data on rows" and Show items with no data on columns" (located in the Display tab of the Pivot Table Options window) but it doesn't work when I limit using a slicer. Is there something I should be doing?
thanks !!!!!
Reply:
------------------------------------
No comments:
Post a Comment