Wednesday, March 2, 2022

I can not ping a server 2008 R2 - Firewall is turned off

I can not ping a server 2008 R2 - Firewall is turned off

Afternoon,

We have a new 2008 R2 server.  I can team viewer onto it.  i can not rdp onto it (remote access is enabled).  i cant ping it from another server but i can ping other machines from the new server.  I can get the internet on it.

Windows Firewall is turned off.

 

Any ideas woudl be much appreciated.

 

Thanks


Reply:

Have you try below command.

 

 netsh firewall set icmpsetting 8 disable

 

Thanks

 


------------------------------------
Reply:

If the firewall is turned off, i shouldnt need to run that command, should I?


------------------------------------
Reply:

Hi,

 

Please open a cmd windows on the server and run the following commands and post the output:

  • netstat -aon | find "3389"
  • telnet localhost 3389

Thank you.


Regards, Liran.

------------------------------------
Reply:

Hi,

 

 

Thanks for posting here.

 

> Now cannot ping it with either name or IP

 

How does this server obtain address ? DHCP or statically assigned ?

 

Have you verified the ARP cache on source host where you performed ping test form in order to ensure that the MAC address of this windows server 2008 R2 host has been correctly listed .

 

 

Meanwhile, you might also try solving it by resetting TCP/IP for this problematic host:

 

How to reset Internet Protocol (TCP/IP)

http://support.microsoft.com/kb/299357

 

 

Thanks.


------------------------------------
Reply:

Please see if you have following scenario

Unable to Connect to Server Through RDP : Event ID: 1048 - Terminal Service Start Failed. The Relevant Status Code Is, "No such interface supported."

http://social.technet.microsoft.com/wiki/contents/articles/5633.aspx


Vote As Helpful, if you find my information useful ! This posting is provided "AS IS" with no warranties or guarantees and confers no rights.

------------------------------------
Reply:

Thanks for the replies.

This actually resolved itself..


------------------------------------

Discuss Private Cloud Physical Hardware Platform

In this article we discuss the physical hardware platform for hosting a Private Cloud Infrastructure as a Service capability within an organization. The physical hardware platform is the environment that the Private Cloud Management and Operations Layers will operate upon to orchestrate the provisioning and management of resource instances provided by the platform. Check it out at http://social.technet.microsoft.com/wiki/contents/articles/6620.private-cloud-physical-hardware-platform.aspx and talk about the private cloud physical hardware platform here. Thanks!

Tom


MS ISDUA/UAG DA Anywhere Access Team Get yourself some Test Lab Guides! http://blogs.technet.com/b/tomshinder/archive/2010/07/30/test-lab-guides-lead-the-way-to-solution-mastery.aspx

Boston Area PowerShell User Group

If you live in the Boston area and are interested in becoming part of a PowerShell User Group please sign up at http://powershellgroup.org/boston.ma

Thanks, and sorry for the spam,

Justin


Justin Rich
http://jrich523.wordpress.com
PowerShell V3 Guide (Technet)
Please remember to mark the replies as answers if they help and unmark them if they provide no help.

Reply:

I like Boston, I like powershell, guess I need to hop on a plane? :)

WebEx it and I'm in


------------------------------------
Reply:
If im as smart as some people think I am (ie im teaching valuable stuff) I
will setup a webex. that probably wont be for a few meetings. at this rate
I'd like to get this going before the scripting games, but so far only two
people.
 
I just started to broadcast it yesterday so we'll see what sort of interest
I get.
 
 

Justin Rich
http://jrich523.wordpress.com
PowerShell V3 Guide (Technet)
Please remember to mark the replies as answers if they help and unmark them if they provide no help.

------------------------------------

PowerShell V3 differences from PowerShell V2

Here's a really interesting article on PowerShell V3, including an example of one coding construct that works in V2 that does not work in V3.  The article calls it an inconsequential breaking change, but the "DLR" (Dynamic Language Runtime) background information is interesting now that it applies to PowerShell V3.
http://huddledmasses.org/powershell-3-finally-on-the-dlr/

Reply:

Has anyone gone far into exploring/exposing the DLR for the masses? 

Good link.


------------------------------------
Reply:

Interesting that some v2 code may be broken if run in v3. So much for backward compatibility.

But something that doesn't get much press is "forward incompatibility". The "#requires -version 2.0" directive basically seems to say: "hey, we need at least version 2.0 to run", or "we cannot run with version 1.0". That is all well and good.

But, in our environment we currently have a mixture of v1 and v2 systems, and may eventually add some v3 while v1 and v2 are still present. I would rather develop script using v2 (and v3 when available) for the enhanced functionality like the ISE. Unfortunately, when developing a script to run on one of our v1-only systems, scripts developed on v2 invariably contain code that requires v2.

What I would like to see is a directive that, when testing, flags constructs not available in the target environment as errors. Something like "#requires -notVersion 2.0".

It seems that the only option for testing code targetted for a 1.0 system is to run it on a system not having 2.0 installed. It would be nice if one could have both versions installed on a development machine, however, I understand that this is either not possible, or that it does not cause v2-only code to fail when run with v1.

 


------------------------------------
Reply:

Yes, the -version 1 switch doesn't work, although the -version 2 switch does.  So, in my case, I can test V2 code on my V3 system by using -version 2.

But, AFAIK, the only way to test for backward compatibility is to run on a version 1 machine.

 


Grant Ward, a.k.a. Bigteddy

What's new in Powershell 3.0 (Technet Wiki)

Network Live Audit - Powershell script

------------------------------------
Reply:

Yes, the -version 1 switch doesn't work, although the -version 2 switch does.  So, in my case, I can test V2 code on my V3 system by using -version 2.

But, AFAIK, the only way to test for backward compatibility is to run on a version 1 machine.

 


Grant Ward, a.k.a. Bigteddy

What's new in Powershell 3.0 (Technet Wiki)

Network Live Audit - Powershell script


Interesting, thanks for that info that you can test v2 code on a v3 system using -version 2. Do you know if you can test v1 code on a v3 system in the same manner?

 


------------------------------------
Reply:
No, I tried that ( -version 1 on V3), but the result is the same as with V2, you get a V2 engine.
Grant Ward, a.k.a. Bigteddy

What's new in Powershell 3.0 (Technet Wiki)

Network Live Audit - Powershell script

------------------------------------
Reply:
No, I tried that ( -version 1 on V3), but the result is the same as with V2, you get a V2 engine.
Grant Ward, a.k.a. Bigteddy

What's new in Powershell 3.0 (Technet Wiki)

Network Live Audit - Powershell script

Thanks.

------------------------------------
Reply:
its by design, i brought it up once and was told thats how it was in V2 and there was a reason, for chuckles i posted a connect case and it was closed as by design. there is a good reason for it, but, i dont recall the details..
Justin Rich
http://jrich523.wordpress.com
PowerShell V3 Guide (Technet)
Please remember to mark the replies as answers if they help and unmark them if they provide no help.

------------------------------------
Reply:
 
"Posted by Microsoft on 10/26/2011 at 4:24 PM
PowerShell version 2.0 is fully backwards compatible with version 1.0 and is an in-place upgrade to
1.0. As a result, running powershell.exe -version 1.0 is essentially a no-op."
 
Is that reasonable?
 
.
On 2/1/2012 5:53 PM, jrich wrote:
> its by design, i brought it up once and was told thats how it was in V2 and there was a reason, for
> chuckles i posted a connect case and it was closed as by design. there is a good reason for it,
> but, i dont recall the details..
 
 

------------------------------------
Reply:
reaonable? inescapable fact of life?

------------------------------------
Reply:
you'll be happier if you consider those two statements the same thing :)
 

Justin Rich
http://jrich523.wordpress.com
PowerShell V3 Guide (Technet)
Please remember to mark the replies as answers if they help and unmark them if they provide no help.

------------------------------------
Reply:
My point exactly!

------------------------------------

Outlook not connecting

Im using self sign certificate. when i try to connect outlook client it show this message

There is a problem with the proxy server's security certificate.
The security certificate is not from a trusted certifiying authority.

Outlook is unable to connect to the proxy server


feroz syed ;)

Reply:
if you want to use self signed certificate then you have to install the ROOT CA certificate on the client pc as trusted certificate authority. Once you have install it you will be able to use the outlook using https connection.

------------------------------------
Reply:

Hi Feroz,

 

  • Make sure that you have all domain names in the certificate SAN feild of the certificate. You can check that by using Get-ExchangeCertificate |FL
  • Make sure that you install the internal CA certificate on problem computers Trusted Certification Authorities store.

 

Install CA on Client PC : Access by using WebApp & it shows the cert icon in IE. Save it on disk & install it. It should work.

It should ask you automatically when you start outlook.

 

Regards
Anand S 


Thanks & Regards Anand Sunka MCSA+CCNA+MCTS

------------------------------------
Reply:

hi,

by default, exchange can use his proper certificate with local outlook client, try to check if the certificate is expired or no.

if the certificate is expired, try to generate other certificate, using "new-exchangecertificate" commande.

the better method, is to generate certificate from a root CA using an exchange certificate request and install certificate on exchange server and clients PC.

Thanks,


------------------------------------
Reply:

hy

Thanks for your ideas.currently im moving my mail server to hyperV.

i ill post my result after my work finish


feroz syed ;)

------------------------------------

windows7

can i
leoneldearaujo
  • Changed type Cloud_TS Friday, February 3, 2012 3:43 AM

Reply:
yes you can

------------------------------------

hi

i am an exchnage administartor. One of my customer is facing the issue. When we create a new user the legacy exchange DN attribute is appended with 3 hex value randomly. Recent changes 2010 sp1 ru6(updtaed ru6)

Reply:
pls help me in this issue
pravin sachin

------------------------------------

Sorting taks by categories in Outlook Web App

Hello,
When will we be able to sort tasks by categories in Outlook Web App (and also in Windows Phone 7)?
This is a feature I use so much on Outlook (desktop), and really is missing on the web app.
Thanks,
Alexgand

Reply:

Hi,

You may read following articles, hope this helpful:

Using Outlook Web App Web Parts

Outlook Web App

Outlook Web App is more Microsoft Exchange server related. In order to get the answer effectively, it is recommended to post a new thread in Exchange Server Forum for further discussion.

http://social.technet.microsoft.com/Forums/en/category/exchangeserver/

Best regards.


William Zhou

TechNet Community Support


------------------------------------

SSRS Chart - Calling javascript is not working Safari browser.

Hi,

I've created a aspx page containing microsoft reportviewer control. I'm using server report.

ReportViewer1.ProcessingMode = Microsoft.Reporting.WebForms.ProcessingMode.Remote;
ReportViewer1.ServerReport.ReportServerUrl = new System.Uri(http://MyServer/ReportServer); 
ReportViewer1.ServerReport.ReportPath = "/Sample/MyReport";

The report has chart, I'm calling a javascript function by setting "Action" to enable hyperlinks and "Go To URL" of chart series properties.

For the "Select URL"field I've set the expression as

="javascript:MyFunction();"

It is calling the function "MyFunction();" in Internet explorer and Firefox. But the function call is not happening in safari.(I'm using Safari 5.0.3).I've checked the settings of the browser,javascript is enabled. This is the body of the function 

function MyFunction() {     alert('test');    }

 

Is there any solution for this?

How can I do this?

Thanks

Nickybeit




Reply:

facing the similar kind of issue and is not working even in IE too..

Can you help me out?

 


Raj

------------------------------------

Client VPN - no client MAC address

After troubleshooting with the Cisco voice system, we came to the following conclusion:

- The (Cisco) voice servers need to be able to record the MAC addresses of the client
- Both in PPTP and L2TP the MAC address of the VPN server is send, INSTEAD of the MAC address from the client
- Hence, the server can’t register the phone because the MAC address is not known and cannot be registered

 

Does anybody have a solution to this problem, so we can see the real MAC addresses of the VPN clients, instead of the VPN server MAC addresses ?


Reply:
So far no solutions... does anybody have an idea ?

------------------------------------
Reply:

Hi joeribar,

 

Thanks for posting at Windows Server forum.

 

The following link is the same question asked at Cisco forum, generally is no way or workaround to fix this issue.

 

VPN Clients all have same MAC Address

https://supportforums.cisco.com/thread/2080448

 

As they mentioned, you may manually configure the MAC address in Windows Registry. Hope it helps.

 

How to change MAC address in Windows Registry

http://www.windowsreference.com/networking/how-to-change-mac-address-in-windows-registry/

 

 

Best Regards,

Aiden


Aiden Cao

TechNet Community Support


------------------------------------
Reply:

Hi, OK thanks. But the Cisco solution is about CISCO client VPN. We use MICROSOFT Client VPN, clients using L2TP connectivity through the Microsoft solution, not the Cisco one. So my question is, if this is possible through the Microsoft VPN solution.

The softhphones are Cisco, but not the tunnel setup.


------------------------------------

What are the steps to create a criteria-based Distribution Group in the portal that includes both Person and Contact (custom) type of objects?

Can the filter statement for a distribution group accomodate more than one object type?

TIA

 


Reply:

<del>Yes. You need a search scope for contacts.</del>

Sorry, I read your question too quick. That would only work for manually managed DG's

Instead you can choose "all eligible resources"


------------------------------------

Great new Learning Resource

We've been working hard with our teams here to get better/more/good information out to our users. We've created a new a customized Windows Live search, that limits results to Books Online. Check this out, and make sure you let your contacts know to visit it and provide feedback:
http://search.live.com/macros/sql_server_user_education/booksonline
 

We want to generate as much traffic as possible here so that we can see if this is useful to our users. We'd love to hear back from everyone we can!


Reply:

This is a great idea, but I still prefer going directly to Books Online to look for more information. I seem to be able to find what I am looking for more quickly with Books Online. Maybe it is just because I am used to it, but I think Books Online provides more alternative routes to finding information, which makes it more useful to me.


------------------------------------
Reply:

The web search is using Live Search from Microsoft, filtered just to SQL Server 2005 Books Online. The search in BOL is used in the DHELPEXPLORER program that renders the help.

 

I agree - I like the web search better.

 

- Buck Woody, SQL Server Program Manager


------------------------------------
Reply:
One more difference is that we can get updated articles in web search!

------------------------------------
Reply:

Hello,

 

I think i will disappoint you with my 1st test.

I have searched for ResourceLastUpdateDateTime ( property of the class Information in the namespace

Microsoft.SqlServer.Management.Smo )

i give you the link i obtained for the search

http://search.live.com/results.aspx?q=ResourceLastUpdateDatetime&go=Rechercher&form=QBJK&q1=macro%3Asql_server_user_education.booksonline

I was expecting to find this link :

http://msdn.microsoft.com/en-us/library/microsoft.sqlserver.management.smo.information.resourcelastupdatedatetime.aspx

No

7 retrievals

http://0.r.msn.com/?ld=2vPMCVcr4YRhsghdOut1+RMQjt/tJt3ml/ib8fjFFK8ofmPtGnhE6b6/0hGXQl1L/EZgjr5POorYYOWxYgnAjuD4mPv1MI40QG9sowSXrLeX4rEp2TccjnViE9mF0c0OBIpJw9y5wmrKlUPFP7lavVNeh6IlhYtihaomvUgkez3dhFp7trt7eVznXCFJb/+z36urkApfBIT0flZw2Cyoh9HHDuTQs=

 

useless and not related to my search

http://325578.r.msn.com/?ld=2vOnZ7/hIHrITysU+eWu+j/xeaJCMyxEtflo3+6jBlDJn5ZubEsUA4oq1hhVJWC2qRB2btVKduGZgrS/DCTKJxBaeUNr2zFHAVRObsxqaRPadd8vz6EDXjwD9RVUWF2WSZhSbVRB72DUGjLYYpyWJ7paG02oX9Mmqr/ve61iR5Y5Pg5Fr5m5j63g4Fjd3ywYgSfT5nVYmopZOPYh+qcuosuB6Bhb8boV5+t6g9+ndV70RrD+UaxQ7Rblt/Rslqr6dkURKAMZPwSE9HLgNGV8pJKGgmgzIL

useless

 

http://msdn.microsoft.com/ja-jp/library/ms190940.aspx

i am not reading japanese

 

http://msdn.microsoft.com/ja-jp/library/ms174396(SQL.90).aspx

correct but in japanese useless

 

and finally the two expected links ( in English OK ) for Sql Server 2005 and 2008

 

I avoid Live Search like plague as i am sure that at least 50% of the links are not concerning what i search ( and the few obtained  results , that's a loss of time )

 

I have a search in the French BOL ( sorry i am french ) ( i have a direct Internet link to the BOL ) 

i obtained 72 results

http://social.msdn.microsoft.com/Search/fr-FR/?query=ResourceLastUpdateDatetime&ac=3

 

at least, at the top i found the correct link ( not in french because the BOL is far to be completely translated , i don't care )

but the results are related to what i wanted

 

Sorry, it is maybe a problem with the french site, but i reject your new search

For me, too long, not complete and with irrelevant results

 

Have a nice day

 

PS : i will send this post for feedback to SQLServerUE@hotmail.com


------------------------------------
Reply:

This is a great idea, but I still prefer going directly to Books Online to look for more information. I seem to be able to find what I am looking for more quickly with Books Online. Maybe it is just because I am used to it, but I think Books Online provides more alternative routes to finding information, which makes it more useful to me.


I get a web page not found on :

http://search.live.com/macros/sql_server_user_education/booksonline


Kalman Toth SQL SERVER 2012 & BI TRAINING
New Book: Beginner Database Design & SQL Programming Using Microsoft SQL Server 2012
  • Edited by Kalman Toth Sunday, September 30, 2012 8:01 AM

------------------------------------
Reply:

I also receive a not found error.


------------------------------------
Reply:
I think this link is dead. I receive a not found error on given link.

------------------------------------
Reply:

Hello,

It says that webpage does not exist.


------------------------------------

SQL 2008 SP2 is now supported as DPM 2010 backend

The SQL backend for DPM 2010 server can now be on SQL 2008 SP2 version. If you have a remote SQL backend, it can also be upgraded to SQL 2008 SP2. Both the configurations are fully supported.


Thanks Praveen T [MSFT] This posting is provided "AS IS" with no warranties, and confers no rights.

Reply:

Hi Praveen,

Please can you give some more information about the if DPM 2010 is working with a remote instance of SQL 2008 R2.  I still find only info that the setup is not working wiht SQL 2008 R2.

Can you explain how this must be done?
Currently I am in an migration of DPM 2007 (on Win 2008, x64) with a remote instance of SQL 2005.  We want to upgrade (= same machine) to DPM 2010 (on Win 2008 R2, x64) with a SQL 2008 R2 remote instance (we do not have have SQL Server 2008 in house, only 2008 R2).
My upgrade path is the following:
  1. DPM 2007: change remote instance to local instance
  2. Upgrade DPM: Upgrade DPM 2007 with local instance to DPM 2010 with local instance
  3. upgrade Windows: Upgrade Windows Server 2008 to Windows Server 2008 R2
  4. upgrade SQL Instance:  When hotfix is avalailbe upgrade SQL 2008 local instance to SQL 2008 remote instance

If SQL 2008 R2 as remobe/local instance is already supported, it saves me a lot of effort and time

Thanks

Ray


------------------------------------
Reply:
Good to hear that Praveen. Should DPM 2010 Server require any hotfixes/rollups to support SQL 2008 SP2 as backend? To be precise should the DPM Server be any better than version 3.0.7696.0?

------------------------------------

Rapid right-click/left-click on Jump Lists cause window to duplicate instead of close

I have an issue with the taskbar Jump Lists. Let's say I have an Windows Explorer window open. Often I will right-click on it on the taskbar and then left-click on "Close window". The problem occurs when I try to do this too fast. Now, if I try to hit "Close window" before the "Frequent" items load (and depending on the program, it can take a second or two), it often will duplicate the window instead of closing it. Has anybody else encountered this issue?

RSS CDATA

I work on an internal SharePoint server. the site that I am working on contains a calendar with RSS enabled. There are three views created for this calendar, with one default view.

The RSS returns CDATA all though-out the code like so:

<item>

      <title>Additional test internal</title>

      <link>https://insight.usgs.gov/Lists/USGS Calendar/DispForm.aspx?ID=57</link>

      <description><![CDATA[<div><b>Start Time:</b> 1/2/2012 3:00 PM</div>
<div><b>End Time:</b> 1/2/2012 4:00 PM</div>
<div><b>Description:</b> <div></div></div>
<div><b>Category:</b> Conference and Trade Shows</div>
<div><b>Audience:</b> Public</div>
<div><b>Activity Type (tag your event):</b> Climate and Land Use Change</div>
<div><b>Cancel this event?:</b> Edit event to Cancel</div>
<div><b>Overall Status:</b> Not Canceled</div>
<div><b>Request Status:</b> Pending</div>
]]></description>

      <author>Newman, Andrea J.</author>

      <enclosure url="/_vti_bin/owssvr.dll?CS=65001&amp;Cmd=Display&amp;CacheControl=1&amp;List={9db2dbdd-e6a8-4831-abf9-5a3959ad7481}&amp;ID=57&amp;Using=%2FLists%2FUSGS%20Calendar/event.ics" type="text/calendar" />

      <category>Conference and Trade Shows</category>

      <pubDate>Tue, 24 Jan 2012 21:54:33 GMT</pubDate>

      <guid isPermaLink="true">https://insight.usgs.gov/Lists/USGS Calendar/DispForm.aspx?ID=57</guid>

    </item>

As you can see the "category" tag is the preferred format for the entire file.. Can you  help me understand this?

Replacing BPOS MigrationToolkit - Needed for Updated PowerShell Commands, Notably Get-MSOnlineUser Cmdlet

Hi all, as many of you know Microsoft is in the process is moving BPOS tenants into Office 365 to provide the next version of hosted Microsoft Online Services.  In earlier postings I've discussed the use of the updated Microsoft Online Migration Toolkit, with an updated Get-MSOnlineUser cmdlet in order to run reports on who has not changed their password since x day.

If you are needing to update your BPOS Mail Migration Tool in order to use this new cmdlet and run these reports, as outlined here (http://social.technet.microsoft.com/Forums/en-US/bpostransition/thread/04fe3272-322c-4306-9326-f2c1b3385ef1) you will need to make sure and perform the following steps:

  1. Uninstall the existing BPOS Mail Migration Toolkit application
  2. Reboot this machine
  3. Install the new BPOS Mail Migration Toolkit, from the following location:

Resources:

  1. Download the latest Microsoft Transporter Suite Tool: http://www.microsoft.com/download/en/details.aspx?displayLang=en&id=5015
  2. Learn more about the updated Get-MSOnlineUser and Set-MSOnlineUser: http://www.microsoft.com/online/help/en-us/helphowto/337f0b2d-facf-4e2d-8d4c-58ae5bab80c9.htm

Note - Unless you uninstall and reboot your machine you may find that the Migration Command Shell will error citing "Unable to find the Get-MSOnlineUser powershell cmdlet", at which point you will not be able to run the Get-MSOnlineUser cmdlet (http://social.technet.microsoft.com/Forums/en-US/bpostransition/thread/04fe3272-322c-4306-9326-f2c1b3385ef1), used to run reports on who has changed their password since X day.


Transitions Community Lead ...Ryan J. Phillips

service account

I am looking more about service accounts creation, configuration , how will work for all machine

Reply:

Which service accounts are you asking about? ConfigMgr. runs the client under the local system account and also the other services that runs on the server.


Kent Agerlund | My blogs: blog.coretech.dk/kea and SCUG.dk/ | Twitter: @Agerlund | Linkedin: Kent Agerlund

------------------------------------
Reply:
All fo this is covered within the Help file, what is unclear within the help file?
http://www.enhansoft.com/

------------------------------------
Reply:

You can have a look at the following section on technet:

http://technet.microsoft.com/en-us/library/bb681067.aspx

It describes the Windows Accounts Used by Configuration Manager.


This posting is provided "AS IS" with no warranties or guarantees, and confers no rights. 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. Click on "vote as Helpful" if you feel this post helpful to you. This can be beneficial to other community members reading the thread.

------------------------------------
Reply:
I want to know workstation & servers local system account. can i have link for the same

------------------------------------
Reply:

What is wrong with the link provided by Reneb79_1?

 


http://www.enhansoft.com/

------------------------------------

Dealing with a Large Dimension

I have a Relation dimension which is {RelationID int, RelationType varchar(50)}. This is a kind of "Super" dimension because it covers many other potential dimensions. For example Customers, Suppliers, PurchaseOrders, SalesOrders, etc. There are currently 50 different dimensions that might be covered by such data. The main fact table associated with it is RelationUpdate {RelationID, RelationType, UserID, Role, Date} - which is counting what object a user updated.

If you wanted to have a better relationship with real dimensions what would be the best way forward? 

It suggests expanding the RelationUpdate fact table with many columns, one for each RelationType. Is it possible and reasonable?


Reply:

Trying to get a better understanding of what your relation dimension is, how does it cover the other dimensions.

On your RelationUpdate fact table one thing to avoid are the varchar columns. If you already have a RelationID, you should avoid including the RelationType in the fact.


mustafa hussain

------------------------------------

I need help creating a report in Access

I need to create a report in Access with data pulled from an Issue Tracking list in Sharepoint. I need the report to, depending on the item's criteria, put it into 1 of 3 lists. For example, if the item has a "resolved date" entered i need it to display that item under "resolved items", if it does not have a resolved date, it needs to show on the report under "open issues", etc. How can i create a report like this?

WAIK RTM Bug Adding Packages

I believe I've found a bug in the RTM version of the WAIK for Windows 7 or maybe someone can explain to me what I'm doing wrong.  I had the RC version of Windows 7 and the RTM version of the WAIK and kept getting "The system cannot find the path specified." when trying to add a package to WinPE.  Thinking it was a mismatch between the RC and the RTM versions, I formatted my work PC, installed the RTM version of Windows 7 Enterprise and the RTM version of the
WAIK.  Again, I ran into the same issue.  However, once I converted the name of the CAB files to be all lowercase, then it works?!

See below...only thing that is different between the two command lines is the case of the package name:

The DISM log file can be found at C:\Windows\Logs
C:\winpe7>Dism /image:C:\winpe7\mount /Add-Package /PackagePath:"C:\Program File
s\Windows AIK\Tools\PETools\x86\WinPE_FPs\WinPE-HTA.cab
"

Deployment Image Servicing and Management tool
Version: 6.1.7600.16385

Image Version: 6.1.7600.16385

An error occurred trying to open - C:\Program Files\Windows AIK\Tools\PETools\x8
6\WinPE_FPs\WinPE-HTA.cab" Error: 0x80070003

Error: 3

The system cannot find the path specified.

The DISM log file can be found at C:\Windows\Logs\DISM\dism.log

C:\winpe7>Dism /image:C:\winpe7\mount /Add-Package /PackagePath:"C:\Program File
s\Windows AIK\Tools\PETools\x86\WinPE_FPs\winpe-hta.cab"

Deployment Image Servicing and Management tool
Version: 6.1.7600.16385

Image Version: 6.1.7600.16385

Processing 1 of 1 - Adding package WinPE-HTA-Package~31bf3856ad364e35~x86~~6.1.7
600.16385
[==========================100.0%==========================]
The operation completed successfully.

The interesting thing is that the CHM file supplied has all CAB file names in lower case.  So if you are copying and pasting from the CHM file, you may never run into this issue.

  • Edited by Adam Leinss Tuesday, August 18, 2009 4:45 PM Grammer

Reply:
I had my package file names in lowercase, but not C:\, when I changed that to c:\ (lowercase c) it worked!
How STUPID is that!  Doesn't anyone test this stuff???
Ed Hammond - System Admin

------------------------------------
Reply:

I had the same error message and came here to find an answer.
Only after reading that the problem could be as stupid as changing a capital C into a lowercase c I found my problem.

The error says it cannot open the file >>C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_FPs\WinPE-HTA.cab"<<
but it should be looking for the file     >>C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_FPs\WinPE-HTA.cab<<

So I left out the final " sign and that solved the problem for me.
It appears they really do not test this stuff!


------------------------------------
Reply:

I tried all three of the methods here; all lowercase letters in filename, all lowercase in full filename (including "c:"), and removing end quotes, also tried removing all quotes...stillgetting identical error you did:

 

An error occurred trying to open - c:\users\administrator\desktop\amddriver.cab  Error: 0x80070002    Error: 2    The system cannot find the file specified.


I renamed the .cab file to amddriver.cab, but just fyi, I did get the file direct from Windows Update.

Any ideas on how to get this .cab installed lmk please.

Thanks.

 



  • Edited by GeekyAdam Wednesday, February 1, 2012 8:33 PM

------------------------------------

No comments:

Post a Comment

Setup is Split Across Multiple CDs

Setup is Split Across Multiple CDs Lately I've seen a bunch of people hitting installation errors that have to do with the fact th...