Powershell不会将多行写入Excel

时间:2015-07-07 08:29:39

标签: excel powershell automation

希望有人可以提供帮助,我是Powershell的新手,我尝试创建一些脚本来自动化一些内部流程。我想我已经跳到了深渊但是我无法让下面的工作。

基本上我试图使用WMI调用WMI从网络内的计算机中检索数据。

该脚本使用我的C:Drive中的主机名列表来运行查询并输出数据(无论如何都应该这样。)任何人都可以帮忙吗?

#ifndef __HELLOWORLD_SCENE_H__
#define __HELLOWORLD_SCENE_H__

#include "cocos2d.h"
#include "Box2D/Box2D.h"

class HelloWorld : public cocos2d::Layer
{
public:
    // there's no 'id' in cpp, so we recommend returning the class instance pointer
    static cocos2d::Scene* createScene();

    // Here's a difference. Method 'init' in cocos2d-x returns bool, instead of returning 'id' in cocos2d-iphone
    virtual bool init();

    // a selector callback
    void menuCloseCallback(cocos2d::Ref* pSender);

    // implement the "static create()" method manually
    CREATE_FUNC(HelloWorld);
};

#endif // __HELLOWORLD_SCENE_H__

1 个答案:

答案 0 :(得分:0)

您不会在foreach-object脚本块中增加$introw,因此您的脚本会一遍又一遍地重写一行。将$introw+=1添加到(Get-Content C:\nodes.txt) | ForEach-Object {...}块的末尾。应该这样做。