批处理 自动输入Y和 允许后自动关闭

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了批处理 自动输入Y和 允许后自动关闭相关的知识,希望对你有一定的参考价值。

@echo off

net stop BFE

echo. & pause

小弟我要用批处理关闭BFE 但是BFE服务始终有软件在使用 提示是:

C:\Users\Administrator>net stop bfe
下面的服务依赖于 Base Filtering Engine 服务。
停止 Base Filtering Engine 服务也会停止这些服务。

IKE and AuthIP IPsec Keying Modules

您想继续此操作吗? (Y/N) [N]:

能不能直接用命令输入Y 不提示

参考技术A echo y|net stop bfe

参考技术B  net stop BFE /y

追问

@echo off
net stop BFE /y
echo. & pause

运行完了自动关闭

追答

pause是用于暂停的,去掉pause就可以自动关闭了。

@echo off
net stop BFE /y

本回答被提问者采纳
参考技术C 可以的,
@echo Y|net stop BFE

UIAlertView 自动关闭后导航栏色调颜色发生变化

【中文标题】UIAlertView 自动关闭后导航栏色调颜色发生变化【英文标题】:Navigation bar tint color changes after auto dimissal of UIAlertView 【发布时间】:2014-02-11 19:38:10 【问题描述】:

我已经编写了自定义 UIAlertview 以允许在某些情况下自动关闭。现在,在 iOS 7 中,当自动关闭发生时,我的导航栏的色调会发生变化。根据 iOS7 过渡指南:

https://developer.apple.com/library/ios/documentation/userexperience/conceptual/transitionguide/TransitionGuide.pdf

当出现警报或操作表时,iOS 7 会自动调暗其后面视图的色调。为了响应这种颜色变化,在其渲染中使用 tintColor 的自定义视图子类应覆盖 tintColorDidChange 以在适当时刷新渲染。

任何想法是否可以仅在自定义 UIAlertView 中处理。下面是我的自定义 UIAlertView 代码:

#define kStartupFailAlert 203

#import "RunnerUIAlertView.h"

@implementation RunnerUIAlertView

- (id)init 
    self = [super init];

    if (self) 
        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(removeAlert) name:kRemoveVisibleAlert object:nil];
    

    return self;



- (void)removeAlert   
    if (self.tag != kStartupFailAlert)  // If not kRunnerStartupFailAlert - as it will be auto dismissed
        self.delegate = nil;
        NSInteger aCancelButtonIndex = [self cancelButtonIndex];
        [super dismissWithClickedButtonIndex:aCancelButtonIndex animated:NO];
    



- (void)dealloc 
    [[NSNotificationCenter defaultCenter] removeObserver:self];


@end

【问题讨论】:

【参考方案1】:

通过恢复应用代理窗口上的色调设置来解决这个问题。但是,它具有在打开弹出框或工作表时不会使导航色调变暗的副作用。这似乎是 iOS7 SDK 的问题。

- (void)removeAlert 
    if (self.tag != kStartupFailAlert)  // If not kRunnerStartupFailAlert - as it will be auto dismissed
        self.delegate = nil;
        NSInteger aCancelButtonIndex = [self cancelButtonIndex];
        [self dismissWithClickedButtonIndex:aCancelButtonIndex animated:NO];

        MyAppDelegate *appDeletgate = [Utilities applicationDelegate];
        appDeletgate.window.tintAdjustmentMode = UIViewTintAdjustmentModeNormal;
    

【讨论】:

以上是关于批处理 自动输入Y和 允许后自动关闭的主要内容,如果未能解决你的问题,请参考以下文章

求教:运行bat文件后如何让cmd窗口自动关闭?

杜比(dolby)自动关闭,声音自动变小

使用yum install keepalived -y之后,启动keepalived服务后6秒自动关闭

使用yum install keepalived -y之后,启动keepalived服务后6秒自动关闭

win 7 cmd命令窗口 一弹出来就自动关闭 急求方法解决

如何防止执行批处理文件后自动关闭控制台