hafiz
60000
Reply:
What is the question?
Bye.
Luigi Bruno - Microsoft Community Contributor 2011 Award
------------------------------------
Forefront Identity Manager 2010 R2 Release Candidate Now Available
Source: Microsoft Server and Cloud Platform Blog > Forefront Identity Manager 2010 R2 Release Candidate Now Available
Have fun with it!
HTH, Peter
Peter Geelen (Traxion) - Sr. Consultant IDA (http://www.fim2010.be)
[If a post helps to resolve your issue, please click the "Mark as Answer" of that post or "Helpful" button of that post.
By marking a post as Answered or Helpful, you help others find the answer faster.]
- Changed type Peter GeelenMVP Wednesday, November 23, 2011 10:19 PM
- Edited by Peter GeelenMVP Wednesday, November 23, 2011 10:19 PM
Reply:
It's never too late in life ... to start living
------------------------------------
Reply:
------------------------------------
Custom Cmdlet in Exchange Remote PowerShell
Hi,
First of all, I'm a C# developper and I'm only working on Powershell for two weeks, so I'm sorry if the answer of my question is trivial.
We've just installed Exchange Server 2010 SP1 and to make the administration a lot easier, I've made some PSCmdlet in C#. I successfully build those commands in a .dll and if I open a "Exchange Management Shell" on the server, with a Import-Modue I can execute the commands without any problem.
Now what I would like to do is to invoke thoses commands from a C# app running on different workstation. I can run the classical exchange commands (Get-Mailbox...) but my commands are unknown and I can't run Import-Module or Add-PSSnapIn neither.
Does anybody knows how to configure PowerShell on the server to always expose my own commands ?
Here is the code I used to connect to the remote powershell :
System.Security.SecureString password = new System.Security.SecureString(); foreach (char c in PASSWORD.ToCharArray()) { password.AppendChar(c); } PSCredential psc = new PSCredential(DOMAIN + @"\" + USERNAME, password); WSManConnectionInfo rri = new WSManConnectionInfo(new Uri(string.Format(SERVER_URL, SERVER_HOST)), "http://schemas.microsoft.com/powershell/Microsoft.Exchange", psc); rri.AuthenticationMechanism = AuthenticationMechanism.Basic; rri.SkipCACheck = true; rri.SkipCNCheck = true; rri.SkipRevocationCheck = true; Runspace runspace = RunspaceFactory.CreateRunspace(rri); runspace.Open(); PowerShell ps = PowerShell.Create(); ps.Runspace = runspace; PSCommand command = new PSCommand().AddCommand("Import-Module"); command.AddParameter("Name", @"C:\ma.dll"); ps.Commands = command; var r = ps.Invoke();
Thanks,
Luc
- Changed type Tiger LiMicrosoft employee Wednesday, December 7, 2011 12:48 AM
Reply:
Now, to be honest, you mention Exchange 2010 and are coding against WSMan... From my understanding, Exchange 2010 is very dependent on PowerShell remoting (using WSMan) working properly, and I would highly recommend not playing with that myself.
If you have a test environment great, but be warned...
------------------------------------
Reply:
Thanks for your answer.
It certain I'll be prudent if I have to play with Exchange, what I'll like to do is just to add my snapin available remotly in the powershell session.
------------------------------------
Open modal dialog after running server side code
Hi,
I have created a web part the has a text box and a search button, when a name is searched for and the search button is clicked i want the C# code to search for the name in an SPList and if only one name matches then javascript function openDetailsModal() i.e.
<script type="text/javascript">
function openDetailsModal()
{
var options =
{
url: "/_layouts/StaffSearch/StaffDetails.aspx",
width: 500,
title: "Employee Details"
};
SP.UI.ModalDialog.showModalDialog(options);
}
</script>
should be called. I've tried it with register scriptblock after the validation checks have been made, tried putting it on the aspx page and the using button.attributes.add("onclientclick", "return openDetailsModal(); return false;"); then trying button.attributes.add("onclientclick", "return openDetailsModal(); return false;"); with or without the return false. Nothing seems to work!!
If duplicate names are found in the list then the two item links which will be passed as query stings to the modal should appear in a panel on the page as perhaps hyperlinks. This is why I havent done everything client side then pass the querystring from the text box, validation needs to occur first.
any suggestions please (anything is much appreciated)!!
Reply:
Try this:
protected void Page_Load(object sender, EventArgs e) { //make modal dialog script. string script = @" var modalDialog; function ShowDialogTest() { var options = { url: '/_layouts/StaffSearch/StaffDetails.aspx', tite: 'Employee Details', allowMaximize: false, showClose: false, width: 500, height: 600 }; modalDialog = SP.UI.ModalDialog.showModalDialog(options); }"; //register the script. ScriptManager.RegisterStartupScript(this, this.GetType(), ClientID, script, true); }
------------------------------------
Reply:
hi,
thanks for the reply, ive tried it but still no luck, just an error saying 'this object does not support this property or method' I put the script in the button click event, then treid on page load (although I wouldnt want the modal to open automatically)
With you code dont you need something to call the function ShowDialogTest() ?
I tried taking out the function and using
protected void Page_Load(object sender, EventArgs e)
{
string script =
@"
var modalDialog;
var options = {
url: 'http://www.google.com',
tite: 'Employee Details',
allowMaximize: false,
showClose: false,
width: 500,
height: 600 };
modalDialog = SP.UI.ModalDialog.showModalDialog(options);";
//register the script.
ScriptManager.RegisterStartupScript(this, this.GetType(), ClientID, script, true);
}
but still no luck, any other suggestions?
many thanks
------------------------------------
Reply:
Full example:
1. Create Visual WebPart:
<%@ Assembly Name="$SharePoint.Project.AssemblyFullName$" %> <%@ Assembly Name="Microsoft.Web.CommandUI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="asp" Namespace="System.Web.UI" Assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" %> <%@ Import Namespace="Microsoft.SharePoint" %> <%@ Register Tagprefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="VWPUserControl.ascx.cs" Inherits="SPTest.VWP.VWPUserControl" %> <asp:TextBox runat="server" ID="tbxSearch" /> <asp:Button Text="ClickMe" runat="server" ID="btnSearch" onclick="btnSearch_Click"
2. WebPart Codebehind
using System; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using Microsoft.SharePoint; namespace SPTest.VWP { public partial class VWPUserControl : UserControl { protected void btnSearch_Click(object sender, EventArgs e) { bool b = true; //Your code for searching //.... if (b) { string script = @" var modalDialog; function ShowDialogTest() { var options = { url: '/_layouts/SPTest/ApplicationPage1.aspx', tite: 'Test', allowMaximize: false, showClose: true, width: 500, height: 600 }; modalDialog = SP.UI.ModalDialog.showModalDialog(options); } ExecuteOrDelayUntilScriptLoaded(ShowDialogTest, 'sp.js');"; //register the script. ScriptManager.RegisterStartupScript(this, this.GetType(), ClientID, script, true); } else { } } } }
3. Create Application Page:
<%@ Assembly Name="$SharePoint.Project.AssemblyFullName$" %> <%@ Import Namespace="Microsoft.SharePoint.ApplicationPages" %> <%@ Register TagPrefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register TagPrefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register TagPrefix="asp" Namespace="System.Web.UI" Assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" %> <%@ Import Namespace="Microsoft.SharePoint" %> <%@ Assembly Name="Microsoft.Web.CommandUI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ApplicationPage1.aspx.cs" Inherits="SPTest.Layouts.SPTest.ApplicationPage1" DynamicMasterPageFile="~masterurl/default.master" %> <asp:Content ID="Main" ContentPlaceHolderID="PlaceHolderMain" runat="server"> <h2> Hello World!!! </h2> </asp:Content>
------------------------------------
Reply:
thanks again i'll give that ago, I have one visual studio project with a visual web part and an application page. I'll try addding in the execute or delay
just tried it, its working!! its funny i had just added that line before reading but had ExecuteOrDelayUntilScriptLoaded(ShowDialogTest(), 'sp.js')"; so wouldnt work anyway, i dont get why you dont add the brackets when calling a method, but its working so im happy!!
I probably should have allowed close on the dialog though!
many thanks :)
- Edited by davinaX Tuesday, September 6, 2011 1:03 PM
------------------------------------
Reply:
Thanks and saved alot of my time...!
Please mark answered if I've answered your question and vote for it as helpful to help other user's find a solution quicker!
------------------------------------
Windows OS requirement for FIM CM?
According to http://technet.microsoft.com/en-us/library/gg418594%28WS.10%29.aspx the operating system installation requirements for FIM CM are:
"FIM CM is supported when installed on servers running Windows Server 2008 Enterprise Edition 64-bit or Datacenter Edition 64-bit or Windows Server 2008 R2 Enterprise. FIM CM is not supported on 32-bit versions of Windows Server 2008."
In other words:
- Windows Server 2008 Enterprise Edition 64-bit
- Windows Server 2008 Datacenter Edition 64-bit
- Windows Server 2008 R2 Enterprise Edition 64-bit
I'm about to install it on a Windows Server 2008 R2 Datacenter Edition, isn't that supported?
- Changed type Markus VilcinskasMicrosoft employee Thursday, March 14, 2013 8:37 AM
Cant use aero peek
- Changed type Mark L. Ferguson Monday, January 19, 2009 8:23 PM
Reply:
~Alex T.~Windows Desktop Experience MVP~
------------------------------------
Reply:
------------------------------------
Reply:
System Properties - Advanced - Performance Settings
------------------------------------
Reply:
------------------------------------
Reply:
------------------------------------
Reply:
it was working for the past few weeks (since ive installed win7) all of a sudden it has stopped.
aero peek is ticked but greyed out
tryed changing themes, nothing
tried changing visual effects, nothing
nothing seems to work.
------------------------------------
Reply:
Hello! Please try every solution given to your problem...and reply back, promptly if possible with its results...
Click here for my thread on Win7 min. system requirements
- JoelbX
------------------------------------
Reply:
tried all the suggested solutions before posting. logged on this morning and its working again with out changing anything. only difference i can see is i have used a docking station today.
mind you, it is not plugged into any extranal devices, eg keyboard or monitor.------------------------------------
Reply:
------------------------------------
Reply:
------------------------------------
Reply:
------------------------------------
Reply:
------------------------------------
Reply:
Try the Aero troubleshooter.
Open Control Panel/Troubleshooting.
Under Appearance and Personalization, select the Display Aero desktop effects.
In the Troubleshooter dialog, click the Advanced link and place a check mark in the Apply Repairs Automatically option.
Click Next to run the troubleshooter.
Let us know the results.
------------------------------------
Reply:
If you have an Aero Theme enabled, just drag the mouse and make the pointer hover over the Show desktop button and right click it, it'll give u two options, Show desktop and Peek at desktop, select peek at desktop... if dat option is not available then u need 2 check whether the aero theme has been enabled....
------------------------------------
Reply:
For the first time you cant use aero feature..
once you change to any theme the greyed aero option gets activated!
then select any theme you want and enjoy aero peek feature in windows 7!!
~Regards!
Pradeep
------------------------------------
Reply:
I was having this problem, (greyed out checkbox and all) when I suddently realised I had some software running at that moment with some compatibility features activated.
(in the application executable properties window I had all 3 "Disable..." settings checked)
I closed the program and my aero peek came back. I relaunch the program without any compatibility feature enable and aero peek is still there :)
my old XP software might be slightly slower this way but I have my aero peek.
------------------------------------
Reply:
------------------------------------
Reply:
Last weekend for some reason aero p[eek stopped working.
Now I have the word Start instead of the start icon and a little box instead of the blank window at the far right of the taskbar which you use to show desktop. Peek is not avaiolable for selection on this button.
In Themes all the Aero themes plus the installed theme that came from Acer with the laptop show monochrome and rfuse to allow me to select them.
In the Appearances setting there is no button saying Enable Aero Peak as mentioned in a few entries about fixing Aero peek.
Also I am hitting issues regularly now with 100% CPU when there is nothing much running at all according to Task manager - and no sign of nay malware etc.
There is a message at boot uop about a service failing to start but no mention about what it is and it also says it couldnt contact System event Viewer to report it. The message says that standard users would not be allowed to log on because of this error.
Any ideas?
------------------------------------
Geography
Hi guys,
So, I'm just about to start stage 4, Fred reckons I'm going to fail (to finish stage 6). I disagree, because he does not know my plan.
What does everyone else think?
P.s Mr Larkman is hawt.
- Moved by 许阳(无锡) Wednesday, December 7, 2011 3:01 AM no technical relationship (From:Visual Studio Tools for Office)
Reply:
Hello there,
what is your question?
Larry Yin(Chinasoft)
Customer Support
EPX Service Engineering Support Team
------------------------------------
IAS
am using IAS for all my Cisco routers. but lately whenever i try logging in to the router have been denied, i check the error from the server and this is what i found. please help me.
User ********** was denied access.
Fully-Qualified-User-Name = <undetermined>
NAS-IP-Address = 172.20.25.154
NAS-Identifier = <not present>
Called-Station-Identifier = <not present>
Calling-Station-Identifier = ip:source-ip=172.27.133.160
Client-Friendly-Name = Gateway
Client-IP-Address = 172.20.25.154
NAS-Port-Type = Virtual
NAS-Port = 164
Proxy-Policy-Name = <none>
Authentication-Provider = <undetermined>
Authentication-Server = <undetermined>
Policy-Name = <undetermined>
Authentication-Type = <undetermined>
EAP-Type = <undetermined>
Reason-Code = 49
Reason = The connection attempt did not match any connection request policy.
For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
- Changed type Tiger LiMicrosoft employee Monday, December 12, 2011 12:53 AM
Reply:
Brandon Wilson - Premier Field Engineer (Platforms)
------------------------------------
Reply:
Hi Humphrey,
Thanks for posting here.
> Reason = The connection attempt did not match any connection request policy.
It seems we may have problem on connection request policy settings, could you verify our current policies and make sure it has been properly set to forward the requests to RADIUS/IAS server ?
Connection Request Processing
http://technet.microsoft.com/en-us/library/cc785024(WS.10).aspx
Thanks.
Tiger Li
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.
------------------------------------
Move from Content Control to Content Control
- Changed type Tony Chen CHN Wednesday, December 7, 2011 6:54 AM vba developer
- Moved by Max Meng Monday, January 2, 2012 8:52 AM Off-topic (From:Word IT Pro Discussions)
Reply:
Hi,
This is the forum to discuss questions and feedback for Microsoft Office product, better to post your question to the forum for Office developer
http://social.msdn.microsoft.com/Forums/en-au/category/officedev
The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us.
Please do not forget to clarify the category so that we could provide support. Thank you for your understanding.
Tony Chen
TechNet Community Support
------------------------------------
Profile Site Update - December 1st
Some nice changes coming today to your profiles. Hope you like them and use this thread to chat more about them!
Point History Graph - the second part of our statistics work is going live today. At the top of a profile page you'll see a time graph representing accumulated points over the time a persons profile has existed. Looking at a profile you'll see when they were active, how many points earned in that month and points at that particular month. We plan to add more interaction to the graph over time (such as zooming, achievements earned when, etc.). Please note there are a couple of bugs we will address in our next release including duplicate months being shown at the start or end of the graph.
Pie Charts - For Activities by Application and Points by Application, you'll see the tabular data replaced with pie charts. When you hover over a piece of the pie you'll see the actual value along with the percentage of that piece. See someone new in the forums, you'll be able to quickly tell if they've spent time elsewhere in our network with ease. Note there is also one design bug here where the colors between the two pie charts aren't always mapped to the same application. We'll fix that in the next release as well.
Missing Achievements - There was another report or two of some achievements not being awarded. We've found that issue and those achievements will appear again over the next week. We'll actually be recalculating all achievement progress to ensure we catch anything else that might be hiding away.
Hover User Cards - There was some feedback that the hover cards we display when you hover over a users name, appeared to easily. We've tweaked that some to make that a better experience.
Avatar Restrictions - If your avatar when converted and resized exceeded 8KB, the system just stopped processing the rest of the image. Apparently that's not really a good idea. ;-) So we've fixed that so that we process the whole image.
Btw, we have heard the request to flip the activity and stats tabs. We haven't done that yet and are still collecting data around usage of both tabs. We are also working through a design update (that activity feed really does need it) so we'll be addressing what order we have the tabs in conjunction with this other work.
All this should be live by 6pm PST today.
- Edited by Sean Jenkin Thursday, December 1, 2011 8:52 PM
Reply:
one cosmetic thing i noticed is, in the pie charts, the colors arent assigned fixed (or at least not the same), so in activity forums can be blue while in points forums is for example green. might be worth to have the colors the same in both charts. no biggie though, I like the charts
edit: my bad, the colors are already mentioned. sorry
- Edited by FZBEditor Friday, December 2, 2011 10:40 AM
------------------------------------
Reply:
I like the idea of a chart that shows points over time, but I do not think it should be at the top of the page. If anything, it should be below the points summary. The most pertinent information should be listed first.
I am also not sure about the pie charts, as it is very difficult to work with on mobile devices (no hover functionality).
Rich Prescott | Infrastructure Architect, Windows Engineer and PowerShell blogger | MCITP, MCTS, MCP
------------------------------------
Reply:
I've noticed that something was wrong after answering a few more than 500 answers: according to the "Recognition System" section in the FAQ page, I should earn the "Forums Answerer IV" gold achievement but the medal still does not appear on my profile page.
Bye.
Luigi Bruno - Microsoft Community Contributor 2011 Award
------------------------------------
Reply:
I believe that is due to them not counting 'Code Answers' towards the Forums Answerer achievements. There are arguments either way as to why they did that, and I think they went the correct way with their decision (or else EVERY answer would have some type of code snippet for max points/achievements).I've noticed that something was wrong after answering a few more than 500 answers: according to the "Recognition System" section in the FAQ page, I should earn the "Forums Answerer IV" gold achievement but the medal still does not appear on my profile page.
Bye.
Luigi Bruno - Microsoft Community Contributor 2011 Award
Rich Prescott | Infrastructure Architect, Windows Engineer and PowerShell blogger | MCITP, MCTS, MCP
------------------------------------
Reply:
I believe that is due to them not counting 'Code Answers' towards the Forums Answerer achievements. There are arguments either way as to why they did that, and I think they went the correct way with their decision (or else EVERY answer would have some type of code snippet for max points/achievements).I've noticed that something was wrong after answering a few more than 500 answers: according to the "Recognition System" section in the FAQ page, I should earn the "Forums Answerer IV" gold achievement but the medal still does not appear on my profile page.
Bye.
Luigi Bruno - Microsoft Community Contributor 2011 Award
Rich Prescott | Infrastructure Architect, Windows Engineer and PowerShell blogger | MCITP, MCTS, MCP
Engineering Efficiency
@Rich_Prescott
Client System Administration tool
AD User Creation tool
I don't know if it could be so: when I've answered the 150th answer, I've immediately earned the "Forums Answerer III" Silver achievement and some of my answers contained code snippets, but they were all counted.
According to the FAQ page, answers with code should be differently counted (that's my opinion, of course) in order to earn the "Code Answerer" achievements: but they're all answers, I presume.
Bye.
Luigi Bruno - Microsoft Community Contributor 2011 Award
------------------------------------
Reply:
one cosmetic thing i noticed is, in the pie charts, the colors arent assigned fixed (or at least not the same), so in activity forums can be blue while in points forums is for example green. might be worth to have the colors the same in both charts. no biggie though, I like the charts
edit: my bad, the colors are already mentioned. sorry
No Worries. Right now the colors are being assigned due to a sorting on highest to lowest points/activity counts. That sorting will be removed and we'll assign specific colors to the apps.
------------------------------------
Reply:
I like the idea of a chart that shows points over time, but I do not think it should be at the top of the page. If anything, it should be below the points summary. The most pertinent information should be listed first.
I am also not sure about the pie charts, as it is very difficult to work with on mobile devices (no hover functionality).
Rich Prescott | Infrastructure Architect, Windows Engineer and PowerShell blogger | MCITP, MCTS, MCP
Engineering Efficiency
@Rich_Prescott
Client System Administration tool
AD User Creation tool
Thanks for the feedback Rich. We'll take a look at how it works further down the page.
As to the pie charts, I found on my phone and table that I can click the pie chart pieces and the data appears.
------------------------------------
Reply:
I believe that is due to them not counting 'Code Answers' towards the Forums Answerer achievements. There are arguments either way as to why they did that, and I think they went the correct way with their decision (or else EVERY answer would have some type of code snippet for max points/achievements).I've noticed that something was wrong after answering a few more than 500 answers: according to the "Recognition System" section in the FAQ page, I should earn the "Forums Answerer IV" gold achievement but the medal still does not appear on my profile page.
Bye.
Luigi Bruno - Microsoft Community Contributor 2011 Award
Rich Prescott | Infrastructure Architect, Windows Engineer and PowerShell blogger | MCITP, MCTS, MCP
Engineering Efficiency
@Rich_Prescott
Client System Administration tool
AD User Creation tool
I don't know if it could be so: when I've answered the 150th answer, I've immediately earned the "Forums Answerer III" Silver achievement and some of my answers contained code snippets, but they were all counted.
According to the FAQ page, answers with code should be differently counted (that's my opinion, of course) in order to earn the "Code Answerer" achievements: but they're all answers, I presume.Bye.
Luigi Bruno - Microsoft Community Contributor 2011 Award
As noted in the announcement post, we are completing a recalc of all achievements. Those if you missing achievements will earn them once the recalc is back up to date. It is going slower than expected but will be done eventually. ;-) Hang tight and you'll be rewarded for your work.
------------------------------------
Reply:
I believe that is due to them not counting 'Code Answers' towards the Forums Answerer achievements. There are arguments either way as to why they did that, and I think they went the correct way with their decision (or else EVERY answer would have some type of code snippet for max points/achievements).I've noticed that something was wrong after answering a few more than 500 answers: according to the "Recognition System" section in the FAQ page, I should earn the "Forums Answerer IV" gold achievement but the medal still does not appear on my profile page.
Bye.
Luigi Bruno - Microsoft Community Contributor 2011 Award
Rich Prescott | Infrastructure Architect, Windows Engineer and PowerShell blogger | MCITP, MCTS, MCP
Engineering Efficiency
@Rich_Prescott
Client System Administration tool
AD User Creation tool
I don't know if it could be so: when I've answered the 150th answer, I've immediately earned the "Forums Answerer III" Silver achievement and some of my answers contained code snippets, but they were all counted.
According to the FAQ page, answers with code should be differently counted (that's my opinion, of course) in order to earn the "Code Answerer" achievements: but they're all answers, I presume.Bye.
Luigi Bruno - Microsoft Community Contributor 2011 Award
As noted in the announcement post, we are completing a recalc of all achievements. Those if you missing achievements will earn them once the recalc is back up to date. It is going slower than expected but will be done eventually. ;-) Hang tight and you'll be rewarded for your work.
Thank you for the feedback, Sean.
I've noticed the problem for the "general" answers, but you know it's difficult to track it for Wiki or Blog comments.
Bye.
Luigi Bruno - Microsoft Community Contributor 2011 Award
- Edited by Luigi BrunoMVP Monday, December 5, 2011 11:53 PM
------------------------------------
Reply:
Thanks for the feedback Rich. We'll take a look at how it works further down the page.Using my profile as an example, my wiki points currently account for 1.28% of my total points. This makes it almost impossible to click on that sliver of the pie, as it is so small.As to the pie charts, I found on my phone and table that I can click the pie chart pieces and the data appears.
With the chart, it would also be helpful to have the actual numbers floating above or below the data points. This would give you more meaningful information at first glance and make it easier for us mobile users.
Rich Prescott | Infrastructure Architect, Windows Engineer and PowerShell blogger | MCITP, MCTS, MCP
------------------------------------
Reply:
Thanks for the feedback Rich. We'll take a look at how it works further down the page.Using my profile as an example, my wiki points currently account for 1.28% of my total points. This makes it almost impossible to click on that sliver of the pie, as it is so small.As to the pie charts, I found on my phone and table that I can click the pie chart pieces and the data appears.
With the chart, it would also be helpful to have the actual numbers floating above or below the data points. This would give you more meaningful information at first glance and make it easier for us mobile users.
Rich Prescott | Infrastructure Architect, Windows Engineer and PowerShell blogger | MCITP, MCTS, MCP
Engineering Efficiency
@Rich_Prescott
Client System Administration tool
AD User Creation tool
You're right, Rich: I'm having the same problem with my Wiki points.
I also suggest you to display Wiki revision comments separated from simple comments, because these two types of comments are also used for different kind of achievements earning: for example, the number of revision comments could be displayed in brackets "()" after the total number of comments; I think it could be important displaying them separately.
Bye.
Luigi Bruno - Microsoft Community Contributor 2011 Award
------------------------------------
What should i name my VIEW?
This is a name for a query in Access (linked to some TABLEs from SQL Server, at least), and is just humorous for us English language audial punsters. The case is real, the name has not been changed, and there is virtually no point to this exercise. But i did have to think a minute before naming it, so i wanted to share. :)
It's used as an intermediate step for export to Excel, for a quarterly report on Employee performance.
The query returns AVG() and SUM() by employee, by month, for all months in the last quarter. Whatever shall i name it?
- Sum Average
- Sum Average Employee
- Sum Average Employee of the Month
- Sum Average Employee Last Quarter
- Sum Average Employee of the Month Last Quarter
- Sum Employee Average
- Sum Employee Last Quarter
- Average Employee Last Quarter and Sum
Reply:
For every expert, there is an equal and opposite expert. - Becker's Law
My blog
------------------------------------
Reply:
>the name should probably reflect as what this view is about
I think that's option 1. :)
------------------------------------
Reply:
Hi Brian !
It should also reflect which object it is reffering to. I would prefer to go with 'Sum_Average_Employee'.
Thanks, Hasham
------------------------------------
Reply:
MG.-
Mariano Gomez, MIS, MCITP, PMP
IntellPartners, LLC.
http://www.intellpartners.com/
Blog http://dynamicsgpblogster.blogspot.com/
------------------------------------
EWS 2010 cannot access Exchange 2010 public folders
I have an application that accesses public folders. It was working well against Exchange 2007 public folders (ExchangeVersionType.Exchange2007_SP1)
Now, I am performing tests of the same code against Exchange 2010. I created a public folder database on the Exchange 2010 , with a public folder in it. I added a few e-mail messages in it using OUtlook 2007.
Now when I use my application, I try to perform a getfolder operation. I set ExchangeVersionType.Exchange2010 on ESB, and I am requesting DistinguishedFolderIdNameType.publicfoldersroot;
The call fails with a "The mailbox that was requested doesn't support the specified RequestServerVersion." I have not figured out any combinations of permissions or whatever that will make it work. Using a ExchangeVersionType.Exchange2007_SP1 makes the call fail with an internal server error.
Does anyone have any clues as to what must be done in order to be able to access Exchange 2010 Public Folders with EWS?
Here is the code of the call I perform. It is pretty basic stuff.
// Set the requested version.
p_Esb.RequestServerVersionValue = new RequestServerVersion();
p_Esb.RequestServerVersionValue.Version = ExchangeVersionType.Exchange2010;
Reply:
aha!
I found the problem! Please see the resolution to my problem here : http://technet.microsoft.com/en-us/library/bb629522.aspx
------------------------------------
MDS 2012 RC0 - Custom Workflow
R2 Customworkflow does not appear to function in RC0 by default.
http://msdn.microsoft.com/en-us/library/hh270298(v=sql.110).aspx
It appears we have a new workflowtypeextender dll (Microsoft.MasterDataServices.WorkflowTypeExtender) which is different from Core(Microsoft.MasterDataServices.Core.Workflow). Do we need to be aware of any config file setting change that may be required which need to be different from R2. Appreiciate if anyone had tried the CustomWorkflow in 2012 RC0 and made it to work. BTW: I am using .net framework 4. for building the custom library.
Thanks, BVR
- Changed type Ed Price - MSFTMicrosoft employee Tuesday, December 23, 2014 1:03 AM
Instaling a Distribution Point in another region of my country and when i
Reply:
distmgr.log will show details. I guess you haven't added the computer account of the site server to the local admin group of the DP (which equals domain admins because it's a DC).
Torsten Meringer | http://www.mssccmfaq.de
- Edited by TorstenMMVP Tuesday, December 6, 2011 8:30 PM
------------------------------------
Deployment Management/Advertisements
We have 6 deployment packages for separate categories (i.e. Win7, WinXP, Win Server 03/08, etc) and 6 different deployment management tasks/advertisements. Each month I remove the expired/superseded updates and pull in the new updates from the update lists and update all DPs. Is the general consensus to recreate new deployment management tasks (advertisements) or do most of you re-use the existing advertisements? Just curious if there is a better method of the 2.
Thanks
- Changed type Sabrina Shen Wednesday, December 21, 2011 8:38 AM
Reply:
See, the below mentioned thread....lot of documentation available.
Management of software updates depends upon you and org which you work for...
I've seen ppl creating monthly deployment management (new). Sustainer package which contains previous years updates.
Anoop C Nair - Twitter @anoopmannur
MY BLOG: http://anoopmannur.wordpress.com
This posting is provided AS-IS with no warranties/guarantees and confers no rights.
- Edited by Anoop C NairMVP Tuesday, December 6, 2011 6:04 PM
------------------------------------
Reply:
Kent Agerlund | My blogs: http://blog.coretech.dk/author/kea/ and http://scug.dk/ | Twitter @Agerlund | Linkedin: /kentagerlund
------------------------------------
Task Reminders - Erratic Behaviour
I have just received the following message from one of my customer's regarding Task Reminders. Can anyone assist with a possible solution.
One other point that, would appear rather minor, however, it causes real frustration concerns the task reminders. In the past task reminders will come up and I would, if I did not need to deal with that task immediately, simply diarise it for 1 day, 4 days, a week whatever? When that reminder came back up again it would simply offer me the same reminder period and I would click snooze. Now, not only does it appear to fall back on to a default 15 minutes but, after I have gone through say, 3 of, what could be 50 task reminders, the task reminder simply appears to reboot itself in the most annoying fashion which means that I need to re-input the snooze period again. It seems that after I have snoozed 3 of the tasks it simply falls back on to default which is extremely annoying given the amount of task reminders that I have. The old Outlook did not do this and I wonder why the new one does? Can anything be done?
Kind regards,
Brian King
- Moved by Jennifer Zhan Tuesday, April 5, 2011 3:43 AM (From:Office IT Pro General Discussions)
- Changed type Jennifer Zhan Tuesday, April 5, 2011 3:43 AM
Reply:
------------------------------------
Installing denali next to 2008R2 instance.
The denali SSRS instance installed successfully on a server that already has a 2008R2 SSRS instance, however the RS Configuration Mgr for 2008R2 does not recognize the 2008R2 instance anymore. The instance textbox is simply grayed out and cannot be connected to. Clicking Find button does not find the 2008R2 instance. However, both 2008R2 and 2012 instance seem to be running and accessible via ReportServer web interface.
thanks
Reply:
Hello,
You have to use the "Reporting Service Configuration Manager" of "Denali" to config the SSRS 2012 instance; of course.
With the configuration manager of SQL Server 2008R2 you can configurate only SSRS 2008R2 instances; not instances of other versions.
Olaf Helper
* cogito ergo sum * errare humanum est * quote erat demonstrandum *
Wenn ich denke, ist das ein Fehler und das beweise ich täglich
Blog Xing
- Edited by Olaf HelperMVP Tuesday, December 6, 2011 5:44 PM
------------------------------------
Reply:
------------------------------------
Error printing from Word 2007 from W2K8 R2 - "Windows cannot print due to the current print setup"
Details of the error below:
This error can appear if a default printer has not been designated or if the application is unable to locate an existing default printer. To correct this problem, try one of the following in Microsoft Windows:
·If a printer is not available in the Print dialog box, add a printer.
·If the application cannot find an existing printer that is already installed, set the printer as the default printer.
·If a default printer is installed but the application is unable to use it, uninstall the printer driver, and then install the latest version of the printer driver.
·If the printer is on a print server, make sure the printer is available, the network is functioning, the server is not stalled, the printer is not out of paper, or the printer is not suspended by the administrator. Printing issues associated with a network printer are best handled by your local network administrator.
For more information about setting up and troubleshooting printer connections, see Windows Help and Support. (Click the Start button, and then click Help and Support.)
---------------------------------------------------------------------------------------------------------------------
Printer is an HP LaserJet 8000. Print driver being used is W2K8 R2 SP2 Microsoft Inbox "HP LaserJet 4" version 6.0.6001.18000. This issue has been reproduced several times.
The oddity is that when it occurs - print jobs still spool correctly from other applications, i.e. Excel 2007, Outlook 2007, notepad, Test pages, etc. A logoff and logon will correct the issue for a bit, but it comes back.
----------------------------------------------------------------------------------------------------------------------
This issue has been seen my many others - but no logical fixes have been provided. Links to other issues on the net below:
http://www.vistax64.com/vista-print-fax-scan/64996-error-printing-ms-office-word-docx.html
http://help.wugnet.com/office/Issue-email-Outllok-2007-ftopict1014492.html
http://forums.majorgeeks.com/showthread.php?t=160462
http://forums.techguy.org/business-applications/832454-solved-word-2007-wont-recognize.html
http://answers.yahoo.com/question/index?qid=20080922084031AAEUeaU
http://www.experts-exchange.com/Microsoft/Applications/Q_23813653.html
Tyler McLaughlin
Reply:
------------------------------------
Reply:
I've been working on this issue with a user for almost two months now with no permanent resolve. I've tried everything short of reimaging the machine. Hopefully someone can answer this for us...
------------------------------------
Outlook 2007
Hi,
Need a help with Outlook 2007, am getting one error while configuring the outlook in user system.
Error is: Cannot open your default e-mail folders. You must connect to mcrosoft exchange with the current profile before you can synchronize your folders with your offline folder file.
Regards
Hanamant
Reply:
Hi All,
Please help me some one user is waiting from two days for this issue.
Regards
Hanamant
------------------------------------
Reply:
If you go to the appropriate website and post in the Microsoft Office forum you will have a better chance of getting some suggestions to resolve your dilemma: http://answers.microsoft.com/en-us
Microsoft Office 2007 is not a part of the Windows XP operating system and has no direct relationship to SP3.
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. "
------------------------------------
Regarding Linked Server
Hi,
We are enabled the linked server.
We are able to execute the store procedure by using rpc. It is fine
We are tested with following function with linked server
declare @ID int
set @ID = (select "115.119.184.220\sqlexpress".master.dbo.DataBaseCheck())
print @ID
While excuting above UDF(User Defined Function) it is giving the fllowing error
Remote function reference '115.119.184.220\sqlexpress.master.dbo.DataBaseCheck' is not allowed, and the column name '115.119.184.220\sqlexpress' could not be found or is ambiguous
Please let me know any queries from your side
- Changed type Ranganath p Tuesday, December 6, 2011 8:37 AM
Reply:
This is a known limitation of linked servers. See the following for workarounds:
RLF
------------------------------------
No comments:
Post a Comment